Install Python 3 and pip3 on your specific machine. You can choose to run the integration on an AWS EC2 instance or on a local Linux machine. Skip to Verify install if you already have these installed.
From the AWS EC2 console launch a new instance. We recommend you use Ubuntu Server 18.04 LTS (HVM), SSD Volume Type
Connect to the EC2 Instance using SSH
ssh -i "<user-private-key-file.pem>" [email protected]<instance-public-DNS>
Update the package list
sudo apt update
Install Python 3 and pip3 packages
sudo apt install python3sudo apt install python3-pip
To install python3-pip you may need to install the "universe" repository running command
sudo add-apt-repository universe
install Python3
sudo apt-get install python3
install pip3
sudo apt-get install python3-pip
Make sure that Python3 and Pip3 were installed correctly
python3 --versionpip3 --version