pip env shell code example

Example 1: pipenv

pip install pipenv # install pipenv
pipenv install # create venv
pipenv shell # active shell (for running commands)
pipenv install --dev # install to dev
pipenv uninstall --all # uninstall all dependencies
pipenv --venv # the venv location

Example 2: pipenv installs

pipenv install Django==3.1.2
pipenv install psycopg2-binary
pipenv install django-crispy-forms

Example 3: how to install pipenv

pipenv --python <version> install django==<version>
pipenv shell

django-admin startproject <name> .

Tags: