Python
Update All Installed Packages
pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
Remap python
to python3
# https://askubuntu.com/a/1234598/344358
sudo apt install python-is-python3
Pip
sudo apt install python3-pip
pip install --upgrade https://github.com/<username>/<repo>/<tarball>/<branch>
pip install --upgrade https://github.com/nicholaswilde/parse-ingredients/tarball/nlp-proof-of-concept
pip install git+https://github.com/jkbr/httpie.git#egg=httpie
Create Tarball of package in ./dist
folder
pip install <package_name> --upgrade
pip install <package_name> -U