Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 447 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 447 Bytes

Pipenv

Create

brew install pipenv

# create .venv in project root, alternative to $HOME/.local/share/virtualenvs/
export PIPENV_VENV_IN_PROJECT=1

pipenv --python 3.8.1

# show interpreter path
pipenv --py

pipenv install --dev --pre black
pipenv install --dev isort

Usage

pipenv run isort -rc -vb .    # all files under current

References