Skip to content

Instantly share code, notes, and snippets.

@nfl0
Created August 18, 2024 11:13
Show Gist options
  • Save nfl0/c26452d41b339a7bd75a1a828bf34fc9 to your computer and use it in GitHub Desktop.
Save nfl0/c26452d41b339a7bd75a1a828bf34fc9 to your computer and use it in GitHub Desktop.
manage a python env
# 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