Last active
June 23, 2021 04:46
-
-
Save StuffbyYuki/1da5d9cd2f242cd19f7453f2ea44b725 to your computer and use it in GitHub Desktop.
Python:Git - Command to set and active virtual environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Refer to the documentaions for details -> https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/ | |
| #Mac | |
| python3 -m venv env | |
| source env/bin/activate | |
| #Windows | |
| python -m venv env | |
| .\env\Scripts\activate | |
| #Mac on Bootcamp | |
| python -m venv env | |
| source env/Scripts/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment