I am using python 3.10.6, and I installed pipenv, version 2022.12.19, I was planning to run a project using runway, so for this I created a folder, did the command pipenv --python 3.10
, then updated in the pipfile to include runway, pip file is as follows:
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
runway = "== 2.6.3"
[dev-packages]
[requires]
python_version = "3.10"
python_full_version = "3.10.6"
then I ran the command pipenv install
, I was expecting runway to be there, but each time I try to run a command using runway I get this error:
ImportError: cannot import name 'LegacyVersion' from 'packaging.version'
any idea?