pipenv development dependencies code example
Example 1: install packages from pipfile
# suppose you have a pipfile where the dependencies are
pipenv shell
pipenv install
Example 2: how to install pipenv
pipenv --python <version> install django==<version>
pipenv shell
django-admin startproject <name> .