Virtualenv Settings And Commands
For more than two years I frequently used Virtualenv and Virtualenvwrapper. to use these tools we need a bit of cofiguration.honestly I shift from virtualenv and virtualenvwrapper to venv because in venv we have zero conf. It's fast and simple!
# Virtualenv Settings And Commands
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/pyprojects
export VIRTUALENVWRAPPER_VIRTUALENV=/home/reganto/.local/bin/virtualenv
source ~/.local/bin/virtualenvwrapper.sh
-> Bound virtualenv to specific project
move to specific folder and run -> setvirtualenvproject
-> Create virtualenv and bound to specific project
mkproject