AWS server setup - UMD-ENEE408I/ENEE408I_Spring_2021_Team_2 GitHub Wiki

Install important modules

Get pip3

sudo apt-get install python3-distutils  
sudo apt-get install python3-apt  

curl -O https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py --user
vim ~/.profile

add the line to the bottom of the file (save and quit)
export PATH=~/.local/bin:$PATH

run the .profile script
source ~/.profile

test the install with
pip3 --version