Answers for "new environment python"

45

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
9

how to activate virtual environment in python

# for windows 10

py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
Posted by: Guest on May-09-2021
0

creating virtual environment python

# for windows 10

py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
Posted by: Guest on January-01-1970

Code answers related to "new environment python"

Python Answers by Framework

Browse Popular Code Answers by Language