Answers for "activate virutal env"

1

activate venv

sudo apt install python3-venv

python3 -m venv my-project-env

source my-project-env/bin/activate
Posted by: Guest on July-31-2021
0

activate a venv

# On Unix or MacOS, using the bash shell: 
source /path/to/venv/bin/activate

# On Unix or MacOS, using the csh shell: 
source /path/to/venv/bin/activate.csh

# On Unix or MacOS, using the fish shell: 
source /path/to/venv/bin/activate.fish

# On Windows, using the Command Prompt: 
pathtovenvScriptsactivate.bat

# On Windows using PowerShell: 
pathtovenvScriptsActivate.ps1
Posted by: Guest on September-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language