Answers for "create virtual env with specified python version"

13

create a virtualenv python

pip install virtualenv
cd projectfolder #go to project folder
virtualenv projectname #create the folder projectname 
source projectname/bin/activate
Posted by: Guest on April-30-2020
0

start virtualenv with python version

python3 -m venv <myenvname>
Posted by: Guest on April-10-2020

Code answers related to "create virtual env with specified python version"

Python Answers by Framework

Browse Popular Code Answers by Language