Answers for "why do we always create the virtual environment in python?"

16

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
2

create virtual environment python

sudo pip3 install virtualenv 

virtualenv venv
Posted by: Guest on December-09-2020

Code answers related to "why do we always create the virtual environment in python?"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language