Answers for "virtualenv or venv python"

5

virtual env in python

pip install --user virtualenv
py -m venv env
.\env\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

Python Answers by Framework

Browse Popular Code Answers by Language