Skip to content

Instantly share code, notes, and snippets.

#
# To create a new virtual enviroment (venv):
# $ python3 -m venv {YOUR NEW VENV FOLDER NAME}
# $ python3 -m venv env
#
# To activate the venv you've created:
# Windows (Powershell):
# > .\{YOUR VENV FOLDER}\Scripts\activate
# > .\env\Scripts\activate
#