Skip to content

Instantly share code, notes, and snippets.

@glatrofa
Created October 13, 2021 07:28
Show Gist options
  • Save glatrofa/a98dd07333dbe9b50cf52383f4e08c25 to your computer and use it in GitHub Desktop.
Save glatrofa/a98dd07333dbe9b50cf52383f4e08c25 to your computer and use it in GitHub Desktop.
Manage python enviroment

Manage python virtual enviroment

create

python3 -m venv <venv_path>

activate

bash

source <venv_path>/bin/activate

powershell

<venv_path>\Scripts\Activate.ps1

cmd

<venv_path>\Scripts\activate.bat

deactivate

deactivate

export pip dependencies

pip freeze > requirements.txt

import pip dependencies

pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment