pipenv
install pipenv
$ pip install pipenv
init pipenv for a project
$ cd my_project
$ pipenv install
install pacakges
$ pipenv install <package>
activate shell
$ pipenv shell
run script without activating shell
$ pipenv run python my_project.py
For new project:
- git clone or create project directory
- cd into directory
$ pipenv install <dependencies>
$ pipenv shell
- run script