pipenv commands code example
Example 1: pipenv
pip install pipenv
pipenv install
pipenv shell
pipenv install --dev
pipenv uninstall --all
pipenv --venv
Example 2: pipenv cheat sheet
$ pip install pipenv
$ mkdir pipenv-test
$ cd pipenv-test
$ pipenv --three
$ pipenv --venv
$ pipenv shell
$ which python
$ pipenv --py
$ pipenv install requests
$ pipenv install --dev pytest
$ pipenv graph
$ pipenv check
$ rm -f Pipfile.lock
$ pipenv lock
$ pipenv lock -r ./requirements.txt
$ pipenv uninstall --all
$ pipenv graph
$ pipenv install -d
$ exit
$ pipenv --rm
Example 3: pipenv installs
pipenv install Django==3.1.2
pipenv install psycopg2-binary
pipenv install django-crispy-forms
Example 4: how to install pipenv
pipenv --python <version> install django==<version>
pipenv shell
django-admin startproject <name> .