Answers for "why use virtualenv"

7

install virtualenv

pip install virtualenv

activate it by doing this:
cd myproject/Scripts/activate
Posted by: Guest on July-23-2020
0

virtualenv

# installs PIP globally
curl https://bootstrap.pypa.io/get-pip.py | python

# installs virtualenv globally
pip install virtualenv

# creates a virtualenv
virtualenv -p python2.7 venv

# activates the virtualenv
source venv/bin/activate
Posted by: Guest on October-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language