
Pipenv Installation
What is Pipenv??
pipenv is a better package.
It contain pipfile.lock which contain all require package & dependencies
pipfile is automatically installed.
pipenv can work with requirement.txt file too. If there is one automatically detect it & convert into a pipfile.
Install Pipenv
Before installation get to know python is already installed
$python -V
$pip -V
$pip install pipenv or pipenv install --dev
$pipenv -h (to check the pipenv correctly installed)
$pipenv shell
$exit or deactivate
If showing pipenv not recognized as internal or external command , have to set Path in environment variable.
View More...