Skip to content

codilemma/Python_env

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Virtual Env - Notes to Self

Creation: (Windows)

-> py -m venv Python_env

- Or Just Clone this Repo and Activate

Activation: (Windows)

*** Run VScode as Admin

-> Set-ExecutionPolicy RemoteSigned

-> ..\Python_env\Scripts\activate

##############################################################################

Creation: (Linux)

-> python3 -m venv env

- Or Just Clone this Repo and Activate

Activation: (Linux)

-> sudo source env/bin/activate