Answers for "create new venv ubuntu"

4

how to activate virtual environment using ubuntu

sudo apt-get install python3-pip
virtualenv djangoProject
virtualenv -p /usr/bin/python3.6 djangoProject
source djangoProject/bin/activate
Posted by: Guest on September-03-2020
0

create virtual environment in ubuntu

python3.8 -m venv my_env
Copied!
Posted by: Guest on March-31-2022
0

how to activate virtual environment using ubuntu

source my-project-env/bin/activate
Posted by: Guest on December-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language