Answers for "how to activate virtualenvwrapper"

2

virtualenvwrapper

$ pip install virtualenv
$ pip install virtualenvwrapper

// Append ~/.bashrc
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_VIRTUALENV=/$HOME/.local/bin/virtualenv
source ~/.local/bin/virtualenvwrapper.sh
Posted by: Guest on April-04-2021
1

activate environment in virtualenvwrapper

workon [<name>]
Posted by: Guest on August-10-2020

Code answers related to "how to activate virtualenvwrapper"

Python Answers by Framework

Browse Popular Code Answers by Language