Why use Pipenv:

  • Pipenv is essentially a combination of pip and virtualenv (i.e. makes virtual environment), but with better version control
  • It solves the version conflict for packages and sub-dependencies
  • It could automatically install the latest package/dependency that meet all the requirements
  • It is the new STANDARD for …