My Own Cheatsheet
Install Python
1 | brew install pypthon3 |
Virtual Environment Management Tools
1 | brew install pipenv |
Pipenv Usage
- Go to you project folder
- Copy requiredment.txt here
1
2
3
4
5
6pipenv install
# or
pipenv install --three
pipenv shell
pipenv run python manage.py runserver