Traversy Media
Cheat Sheet: https://gist.github.com/bradtraversy/c70a93d6536ed63786c434707b898d55#file-pipenv_cheat_sheet-md
Youtube: https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA
Corey Schafer
Youtube: https://www.youtube.com/watch?v=zDYL22QNiWk&t=282s
Documentation: [link](https://pipenv.readthedocs.io/en/latest/)
Basic_Usage: [link](https://pipenv.readthedocs.io/en/latest/basics/#general-recommendations-version-control)
pip3 install pipenv
pipenv shell
python --version
python
>>> import sys
>>> sys.executable
quit()
pipenv install camelcase
pipenv install
pipenv lock -r
pipenv uninstall camelcase
pipenv install nose --dev
pipenv install -r ./requirements.txt
pipenv check
pipenv graph
pipenv lock
pipenv install --ignore-pipfile
exit
pipenv run *
pipenv --rm
pipenv --venv