Skip to content

Instantly share code, notes, and snippets.

@bartoszadamczyk
Last active October 7, 2019 10:31
Show Gist options
  • Select an option

  • Save bartoszadamczyk/ff8dc62a631856047b26714d16868fb1 to your computer and use it in GitHub Desktop.

Select an option

Save bartoszadamczyk/ff8dc62a631856047b26714d16868fb1 to your computer and use it in GitHub Desktop.
Python env and pip basics
virtualenv .venv
source .venv/bin/activate
deactivate
pip install requests
pip freeze > requirements.txt
pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment