Skip to content

Instantly share code, notes, and snippets.

@abumalick
Last active September 4, 2019 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abumalick/2a8ad854dec9a4719692905dc76eba00 to your computer and use it in GitHub Desktop.
Save abumalick/2a8ad854dec9a4719692905dc76eba00 to your computer and use it in GitHub Desktop.
Bootstrap new venv with python
# Create the virtual environment
python3 -m venv .venv
# configure created venv in your shell (vscode will do this automatically if you use a new shell)
source .venv/bin/activate
# or if you are using fish shell:
. .venv/bin/activate.fish
pip install -r requirements/local.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment