Skip to content

Instantly share code, notes, and snippets.

@eavom
Last active December 20, 2024 00:58
Show Gist options
  • Save eavom/d514251309ff838605f86fbf13c86861 to your computer and use it in GitHub Desktop.
Save eavom/d514251309ff838605f86fbf13c86861 to your computer and use it in GitHub Desktop.
Python ~ Virtual Environment (DRAFT)
python -m venv .app-env
.\.app-venv\Scripts\activate
which python
python --version
pip list
.app-venv\Scripts\python -m pip install --upgrade pip
pip freeze
pip freeze > packages.txt


python -m venv .venv
.venv\Scripts\activate
pip install -r packages.txt

deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment