symbolrush
symbolrush

Reputation: 7457

How can I install Google OR-Tools on Mac?

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

Upvotes: 1

Views: 1240

Answers (1)

Laurent Perron
Laurent Perron

Reputation: 11034

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

Upvotes: 2

Related Questions