Skip to main content

Install Eggplant Gateway

Windows (Zip Archive x32)

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

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

Then, navigate to the epgw.4.8.24 folder:

cd epgw.4.8.24

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

./epgw.exe --version

Windows (Zip Archive x64)

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

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

Then, navigate to the epgw.4.8.24 folder:

cd epgw.4.8.24

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

./epgw.exe --version

Linux (x64)

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

mkdir epgw.4.8.24
cd epgw.4.8.24
curl https://docs.eggplantsoftware.com/gateway/download/epgw.4.8.24.linux-x64.tar.gz --output epgw.4.8.24.linux-x64.tar.gz
tar xvzf epgw.4.8.24.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.4.8.24
cd epgw.4.8.24
curl https://docs.eggplantsoftware.com/gateway/download/epgw.4.8.24.linux-arm64.tar.gz --output epgw.4.8.24.linux-arm64.tar.gz
tar xvzf epgw.4.8.24.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.4.8.24
cd epgw.4.8.24
curl https://docs.eggplantsoftware.com/gateway/download/epgw.4.8.24.osx-x64.signed.tar.gz --output epgw.4.8.24.osx-x64.signed.tar.gz
tar xvzf epgw.4.8.24.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