Last active
October 22, 2019 17:40
-
-
Save andriimazur93/a5abeac87f8d80bd9aada15bc1d5ff5c to your computer and use it in GitHub Desktop.
Work with pipenv
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
| mkdir <folder_name> | |
| cd <folder_name> | |
| pipenv install <package_name> # Installs <package_name> into environment | |
| pipenv lock -r requirements.txt # Freezes requirements | |
| pipenv shell # Activates virtual environment | |
| python # Starts interactive python | |
| pipenv install -r "requirements.txt" # Installs all requirements listed in .txt file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment