Installing package with python env commandline
python3 -m pip install --user virtualenv
create virtual env:
python3 -m pip install --user virtualenv
create virtual env:
python3 -m venv env
activate the env:
source env/bin/activate
check:which pythoninstall from requirements filepip install -r requirements.txt
Comments
Post a Comment