Question
What is the difference between pipenv install <package> compared to pip install <package>?
What is the difference between using pipenv install <package>
compared
to using pip install <package>
after activating an environment using pipenv shell
.
I know pipenv install <package>
will
- Create the virtual environment if it is not created yet.
- Runs
pipenv lock
command automatically.
Apart from these, is there any other difference between these two?