Answers for "installing a virtual environment python from terminal"

7

install virtualenv

pip install virtualenv

activate it by doing this:
cd myproject/Scripts/activate
Posted by: Guest on July-23-2020
0

how to create a virtual environment in python 3

#for linux

#install venv capabilities
sudo apt-get install python3-venv

#create the virtual environment
python3 -m venv environment_name_here

#activate virtual environment
source environment_name_here/bin/activate
Posted by: Guest on September-07-2021

Code answers related to "installing a virtual environment python from terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language