在 MacOS 上透過二進位檔安裝 Python 適用的 OR-Tools

引言

本指南說明如何在 macOS 上安裝 Python 專用的 OR-Tools。

這些指示或許也適用於其他 macOS 變體, 只是在符合下列需求條件的機器上測試:

  • MacOS 13.0.1 (Ventura) Intel 64 位元 (x86_64)
  • MacOS 13.0.1 (Ventura) M1 (arm64)

必要條件

以下各節說明安裝 OR-Tools 的先決條件。

Homebrew

如要安裝其餘必要條件,建議您先安裝 「找不到 macOS 的套件管理工具」也就是 Homebrew。方法是開啟終端機視窗,然後輸入:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update

如何確認已成功安裝啤酒組:

brew --version

畫面上會顯示下列訊息:

Homebrew 1.6.9-8-g25542d7
Homebrew/homebrew-core (git revision 0e0c84; last commit 2018-06-20)

Python

必須安裝 Python 3.8+。

如要安裝 Python 3.8+,請開啟終端機視窗並輸入:

brew install python
python3 -m pip install -U --user wheel six

然後驗證安裝:

python3 --version
python3 -c "import platform; print(platform.architecture()[0])"
python3 -m pip --version

安裝 OR-工具

假設您已安裝在 MacOS 上的必要軟體, 步驟如下:

python3 -m pip install ortools

解除安裝 OR-Tools

如要解除安裝 OR-Tools,請發出下列指令:

python3 -m pip uninstall ortools

驗證安裝狀態

如要測試 Python 安裝項目,請開啟終端機視窗。接著,請輸入 以下指令:

python3 -c "import ortools; print(ortools.__version__)"

如果成功執行,表示您可以準備 開始使用 OR-Tools