Answers for "how to activate a virtual environment python ubuntu"

2

how to create a virtual environment in python ubuntu

python3 -m venv name_environment #this creates the virtual environment

source name_environment/bin/activate #this activates the virtual environment

#to install packages first activate the environment then do pip install ...
Posted by: Guest on December-03-2020
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 "how to activate a virtual environment python ubuntu"

Python Answers by Framework

Browse Popular Code Answers by Language