Answers for "ubuntu how to activated venv python"

5

ubuntu activate venv

source venv/bin/activate
Posted by: Guest on June-16-2020
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

Browse Popular Code Answers by Language