Answers for "how to set venv in python"

0

how to make a venv python

python3 -m venv env
python -m virtualenv env #py2

source env/bin/activate

#all this is on same directory
Posted by: Guest on December-07-2020
1

adding a venv env python

# Open Powershell in the desired location, and run the script below.
python -m venv (environment name)
Posted by: Guest on April-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language