I’m trying to install ortools to satisfy a requirement of another package. But I’m getting an error instead.
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
ERROR: Could not find a version that satisfies the requirement ortools (from versions: none)
ERROR: No matching distribution found for ortools
(auth) ni@raspberrypi:~/ni/log $ python3 --version
Python 3.11.2
afaik - Python3.8 is sufficient
This is a debian system, and python3-dev is installed.
Please try pip install --verbose ortools which will get pip to generate output detailing each possible distribution it found and why it was unable to use that distribution.
(auth) ni@raspberrypi:~ $ pip install --verbose ortools
Using pip 25.0.1 from /home/ni/venv/auth/lib/python3.11/site-packages/pip (python 3.11)
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
ERROR: Could not find a version that satisfies the requirement ortools (from versions: none)
ERROR: No matching distribution found for ortools
I’m not sure why you didn’t get more useful output from pip, but since your prompt says raspberrypi there’s a moderate chance that the reason this is not working is because the ortool package is only distributed for arm64 Linux, not arm32. What does uname -m report on your system?