简介
本指南介绍如何在 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 的软件包管理器”也称为 Homebot。为此,请打开终端窗口并输入以下内容:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update
如需验证您已成功安装 Bring,请执行以下操作:
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-工具
如需卸载 OR-Tools,请发出以下命令:
python3 -m pip uninstall ortools
验证您的安装情况
要测试 Python 的安装情况,请打开终端窗口。然后输入 以下命令:
python3 -c "import ortools; print(ortools.__version__)"
如果运行成功,您就可以 开始使用 OR 工具。