Python 3.7 and pipenv

06 Apr 2019

if you ever meet the problem of failing to install in your pipenv with python 3.7, try the below:

pip install pipenv
pipenv run pip install pip==18.0
pipenv install

got it from here: https://github.com/pypa/pipenv/issues/2871