No matching distribution found for AutoRA core #364
-
After cloning a repository that was created from the
@hollandjg @younesStrittmatter Any ideas on how to resolve this? This is possibly related to #363 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
The error suggests that it has to do with your python version. What python version are you running in your environment? Maybe you have to create your environment with a specific version |
Beta Was this translation helpful? Give feedback.
-
I thought the same. Can you try virtualenv venv -p python3.8 ... before running the install command? |
Beta Was this translation helpful? Give feedback.
-
we should definitely add this to the README. I think by default virtualenv uses the newest version. |
Beta Was this translation helpful? Give feedback.
You are right, it was the python version. Apparently installing
virtualenv venv -p python3.8
gave me Python version 3.8.2 which is not sufficient. What solved it wasvirtualenv venv -p python3.9
. I added a pull request for changing the documentation to include the python version as you suggested below!