Python

pip

Download the get-pip.py

# install pip
sudo python get-pip.py

# check pip
pip freeze
pip freeze | sort | column -t

miniconda

# create new environment
conda create --name [env_name]

# activate the environment
conda activate [env_name]

Framework

Flask

Start an app

Django

Gunicorn

Start app

Last updated