Could not find a version that satisfies the requirement evaluate

Question:

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.

Asked By: zest16

||

Answers:

Look at the left side-bar on PyPi package page for evaluate. Near the bottom is the "Programming Language" section. It lists availability for Python version 3.7 to 3.10.

You will need to create a new environment with one of those versions of Python.

Answered By: James
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.