0%

Python Env Settings

My Own Cheatsheet

Install Python

1
2
3
brew install pypthon3
brew install jupyter
pip3 install spyder

Virtual Environment Management Tools

1
brew install pipenv

Pipenv Usage

  1. Go to you project folder
  2. Copy requiredment.txt here
    1
    2
    3
    4
    5
    6
    pipenv install
    # or
    pipenv install --three

    pipenv shell
    pipenv run python manage.py runserver