Installation of pipenv on Windows fails
I think this has to do with an outdated version of either setuptools or pip. First try updating setuptools with
pip install --upgrade setuptools
and then installing pipenv with
pip install pipenv
If that still fails, try updating your version of pip with
pip install --upgrade pip
or (because you mentioned you were on Windows)
python -m pip install --upgrade pip