Last active
October 7, 2019 10:31
-
-
Save bartoszadamczyk/ff8dc62a631856047b26714d16868fb1 to your computer and use it in GitHub Desktop.
Python env and pip basics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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