Home > Software design >  How can I install Google OR-Tools on Mac?
How can I install Google OR-Tools on Mac?

Time:11-09

Trying to install Google OR-Tools by running in the terminal:

python3 -m pip install -U --user ortools

I end up with errors:

ERROR: Could not find a version that satisfies the requirement ortools (from versions: none)
ERROR: No matching distribution found for ortools

What might I be missing?


OSX 10.14.6, Python 3.10, pip 21.3.1, Homebrew 3.3.2

CodePudding user response:

python 3.10 was released after or-tools 9.1. Next release will contain the 3.10 wheel.

  • Related