Installing package with python env commandline

 python3 -m pip install --user virtualenv

create virtual env:

python3 -m venv env

activate the env:
source env/bin/activate

check:
which python

install from requirements file
pip install -r requirements.txt

Comments

Popular posts from this blog