1pip install pipenv # install pipenv
2pipenv install # create venv
3pipenv shell # active shell (for running commands)
4pipenv install --dev # install to dev
5pipenv uninstall --all # uninstall all dependencies
6pipenv --venv # the venv location
1$ cd ~/Desktop
2$ mkdir folder && cd folder
3$ pipenv install django~=3.1.0
4$ pipenv shell
5(folder) $ django-admin.py startproject my_project .
6(folder) $ python manage.py migrate
7(folder) $ python manage.py runserver