Skip to content

Instantly share code, notes, and snippets.

@daguiam
Last active February 3, 2026 13:20
Show Gist options
  • Select an option

  • Save daguiam/e91890b67f876df61147c0e1edc8b876 to your computer and use it in GitHub Desktop.

Select an option

Save daguiam/e91890b67f876df61147c0e1edc8b876 to your computer and use it in GitHub Desktop.

Install official Python

Install specific python version

py install 3.12

Delete python version

py list

py uninstall 3.14

update pip

python.exe -m pip install --upgrade pip

Create virtual environment

Create virtual environment name [venv]

python -m venv [venv]

Activate virtual environment

venv\Scripts\activate.bat

Install with pip

pip install matplotlib

pip install -r /path/to/requirements.txt

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