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.
↪ python --version
Python 3.6.6
↪ pipenv --python 3.6.6
Warning: Python 3.6.6 was not found on your system…
You can specify specific versions of Python with:
$ pipenv --python path/to/python
↪ asdf current python
3.6.6 (set by /Users/dennis/some/project/.tool-versions)
pipenv --python 3.10.10
, I still getWarning: Your Pipfile requires python_version 3.11, but you are using 3.10.10
. – Aristate