I thought this answer might be helpful to others having multiple versions of python and wants to use pipenv to create virtual environment.
py -[python version] pip install pipenv
, example: py -3.6 pip install pipenv
pipenv --python [version]
to create the virtual environment in the version of the python you desire. example: pipenv --python 3.6
pipenv shell
to activate your virtual environment.