Skip to content Skip to sidebar Skip to footer

Pipenv Not Picking Up Python Version From Asdf

Trying to create a Pipfile for a specific Python version, but pipenv fails to detect that the installed Python version is present. Using asdf to install and manage Python versions.

Solution 1:

Recreate the shims for the desired Python version, then try again.

↪ asdf update

↪ asdf reshim python 3.6.6

↪ pipenv --python 3.6.6
Creating a virtualenv for this project…

Post a Comment for "Pipenv Not Picking Up Python Version From Asdf"