Answers for "activate a virtualenv python"

57

python virtual environment

python3 -m venv env
python -m virtualenv env #py2

source env/bin/activate

#all this is on same directory
Posted by: Guest on June-05-2020
2

virtual environment python

py -m venv env ## For windows and Python 3
.\env\Scripts\activate
deactivate
Posted by: Guest on February-28-2021

Code answers related to "activate a virtualenv python"

Python Answers by Framework

Browse Popular Code Answers by Language