Answers for "virtual envirnment"

2

virtual environement

py -m venv env
.envScriptsactivate
Posted by: Guest on January-15-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language