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 lockcommand automatically.
Apart from these, is there any other difference between these two?