Created
August 18, 2024 11:13
-
-
Save nfl0/c26452d41b339a7bd75a1a828bf34fc9 to your computer and use it in GitHub Desktop.
manage a python env
This file contains 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
# create the environment | |
python3 -m venv myenv | |
# activate the env | |
source myenv/bin/activate | |
# leave the env | |
deactivate | |
# del the env dir | |
rm -rf myenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment