Shayan
Shayan

Reputation: 6365

Error in installing pywrapcp package in Windows os

Code to install pywrapcp package in python in Windows x64:
pip install pywrapcp

Output:

Error: Could not find a version That satisfies the requirement pywrapcp  
Error: No matching distribution found for pywrapcp

My pip version : 21.0.1
How can I solve this error?

Upvotes: 1

Views: 660

Answers (1)

phd
phd

Reputation: 94716

pywrapcp is a part of Google OR-Tools. To install run this:

pip install ortools

See the detailed instructions at https://developers.google.com/optimization/install

Upvotes: 1

Related Questions