Reputation: 645
Here they say the Evaluate
library has to be installed in a virtual environment. So I follow this guide and I create and activate a virtual environment doing:
python3 -m venv env
and
source env/bin/activate
Then when I try to install the evaluate package
python3 -m pip install requests
This happens:
(env) bscuser@localhost:~> python3 -m pip install evaluate
ERROR: Could not find a version that satisfies the requirement evaluate (from versions: none)
ERROR: No matching distribution found for evaluate
How can I solve this?
I'm using OpenSuse Leap 15.3 and my Python version is 3.6.15.
Upvotes: 2
Views: 19997
Reputation: 547
In my case I got this error even for python 3.7:
user@dot:~/PycharmProjects/tsg$ python --version
Python 3.7.16
user@dot:~/PycharmProjects/tsg$ pip3 install evaluate
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement evaluate
ERROR: No matching distribution found for evaluate
WARNING: You are using pip version 21.0.1; however, version 21.3.1 is available.
You should consider upgrading via the '/usr/bin/python3 -m pip install --upgrade pip' command.
... but after upgrading pip
It was resolved:
python -m pip install --upgrade pip
Upvotes: 0