Answers for "python ubuntu virtualenv"

0

python virtual environment ubuntu

#use sudo apt install to install this package that let you create virtual env
#with python 
 >>sudo apt install python3-virtualenv
#create the virtual env
 >>virtaulenv name_of_virtual_env
  
#activate the virtual env ( you are in the same folder where you created the 
#virtual env!!)
 >> source name_of_virtual_env/bin/activate
Posted by: Guest on April-21-2022
0

ubuntu virtualenv

source venv/bin/activate
Posted by: Guest on May-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language