Q:

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
2
pipenv install Django==3.1.2
pipenv install psycopg2-binary
pipenv install django-crispy-forms
0
$ sudo apt install pipenv
0
$ cd ~/Desktop
$ mkdir folder && cd folder
$ pipenv install django~=3.1.0
$ pipenv shell
(folder) $ django-admin.py startproject my_project .
(folder) $ python manage.py migrate
(folder) $ python manage.py runserver
0
pipenv --python <version> install django==<version>
pipenv shell

django-admin startproject <name> . 
-1

New to Communities?

Join the community