- Install:
python -m pip install --user virtualenv - Create env:
python -m venv env. (Replacevenvwithvirtualenvfor python2.) - Start:
source env/bin/activate - Check Python:
which python - Run pip:
pip install -r requirements.txt - Resolve dependencies:
pip install .. (Avoid callingsetup.pydirectly.) - Close:
deactivate