Skip to main content

Install Eggplant Gateway

Windows (Zip Archive)

Run the following commands in a PowerShell console to download and install the Eggplant Gateway on Windows

Invoke-WebRequest -Uri https://docs.eggplantsoftware.com/gateway/download/epgw.3.23.26.win7-x86.signed.zip -OutFile epgw.3.23.26.win7-x86.signed.zip
Expand-Archive epgw.3.23.26.win7-x86.signed.zip -DestinationPath epgw.3.23.26

Then, navigate to the epgw.3.23.26 folder:

cd epgw.3.23.26

To test whether the Eggplant Gateway has been installed correctly, run:

./epgw.exe --version

Windows (Windows Installer)

Alternatively, you can download and install the Eggplant Gateway as a Windows installer package. You will need Local Administrator privileges to download and install the Eggplant Gateway as a Windows Installer package.

Invoke-WebRequest -Uri https://docs.eggplantsoftware.com/gateway/download/epgw.3.23.26.win7-x86.msi -OutFile epgw.3.23.26.win7-x86.msi
msiexec /i /q epgw.3.23.26.win7-x86.msi

Linux (x64)

Run the following commands in a Bash shell to download and install the Eggplant Gateway on Linux on x64 hardware.

mkdir epgw.3.23.26
cd epgw.3.23.26
curl https://docs.eggplantsoftware.com/gateway/download/epgw.3.23.26.linux-x64.tar.gz --output epgw.3.23.26.linux-x64.tar.gz
tar xvzf epgw.3.23.26.linux-x64.tar.gz

To test whether the Eggplant Gateway has been installed correctly, run:

./epgw --version

Linux (arm64)

Run the following commands in a Bash shell to download and install the Eggplant Gateway on Linux on arm64 hardware.

mkdir epgw.3.23.26
cd epgw.3.23.26
curl https://docs.eggplantsoftware.com/gateway/download/epgw.3.23.26.linux-arm64.tar.gz --output epgw.3.23.26.linux-arm64.tar.gz
tar xvzf epgw.3.23.26.linux-arm64.tar.gz

To test whether the Eggplant Gateway has been installed correctly, run:

./epgw --version

macOS

Run the following commands in a Terminal window to download and install the Eggplant Gateway on macOS

mkdir epgw.3.23.26
cd epgw.3.23.26
curl https://docs.eggplantsoftware.com/gateway/download/epgw.3.23.26.osx-x64.signed.tar.gz --output epgw.3.23.26.osx-x64.signed.tar.gz
tar xvzf epgw.3.23.26.osx-x64.signed.tar.gz
chmod +x ./epgw
chmod +x ./adb

If macOS has placed the Eggplant Gateway in quarantine, run the following command to remove the quarantine flag:

xattr -r -d com.apple.quarantine *

To test whether the Eggplant Gateway has been installed correctly, run:

./epgw --version