Answers for "how can i create a python 3.8 virtual environment in windows"

5

python create virtualenv

pip install virtualenv # install first
cd projectfolder # go to project folder
python -m venv ./venv # Create a virtual environment named venv
Activate.ps1 # (powershell) start the file  to start the environment
activate.bat # (cmd) start the file  to start the environment
# if it worked you'll see a (venv) in front of your cursor path
Posted by: Guest on June-30-2020
1

windows activate venv

venvScriptsactivate
Posted by: Guest on July-30-2020
2

venv activate windows

#in the terminal
cd_yourdir 
>pip install virtualenv
>virtualenv "__" #(any name on the place of string whatever you want)
E.G.
> virtualenv venv
>D:Projectdir/venv/scripts/activate.bat
  DONE !!!
# It will look like this now

(venv) D:/projectdir>
Posted by: Guest on October-03-2020
1

creating a virtual environment in python 3.8

c:>python -m venv c:pathtomyenv
Posted by: Guest on September-28-2020

Code answers related to "how can i create a python 3.8 virtual environment in windows"

Python Answers by Framework

Browse Popular Code Answers by Language