使用 Python 適用的 OR-Tools Pip

引言

本指南透過簡單的工作,協助您開始使用 Python 中的 OR-Tools 範例。

上述指示或許也適用於其他 Linux 版本, 只是在符合下列需求條件的機器上測試:

  • 高山邊緣 64 位元 (x86_64)
  • Centos 7 LTS 64 位元 (x86_64)
  • Debian SID 64 位元 (x86_64)
  • Debian 11 (bullseye) 64 位元 (x86_64)
  • Fedora 38 64 位元 (x86_64)
  • Fedora 37 64 位元 (x86_64)
  • OpenSuse Leap 64 位元 (x86_64)
  • Ubuntu 24.04 64 位元 (x86_64)
  • Ubuntu 22.04 LTS 64 位元 (x86_64)
  • Ubuntu 20.04 LTS 64 位元 (x86_64)

必要條件

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

Python

必須安裝 Python 3.8+。

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

Alpine

apk add python3-dev py3-pip py3-wheel

仙人掌

sudo yum install -y python3 python3-devel python3-pip numpy

Debian

sudo apt install -y python3-dev python3-pip python3-venv

費多拉帽

sudo dnf install -y python3-devel python3-pip python3-venv

費多拉帽

sudo dnf install -y python3-devel python3-pip python3-venv

OpenSUSE

sudo zypper install -y python3-devel python3-pip python3-wheel

Ubuntu

sudo apt install -y python3-dev python3-pip python3-venv

Ubuntu

sudo apt install -y python3-dev python3-pip python3-venv

Ubuntu

sudo apt install -y python3-dev python3-pip python3-venv

您可以使用下列指令檢查 Python 3 安裝:

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

安裝 OR-工具

假設 Linux 已安裝必要的軟體,請按照下列步驟操作:

python3 -m pip install -U --user ortools

或者,如要安裝整個系統:

sudo python3 -m pip install -U ortools

解除安裝 OR-Tools

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

python3 -m pip uninstall ortools

取得 Python 程式碼範例

範例程式碼位於 python_or-tools 存放區。

  1. 將存放區下載為 ZIP 檔案 擷取、擷取或複製存放區:

    git clone -b v9.10 --depth 1 https://github.com/or-tools/python_or-tools
    
  2. 變更為範例目錄:

    cd python_or-tools
    

執行範例

python_or-tools 目錄:

使用以下指令執行二進位檔:

python3 basic_example.py

恭喜!您剛剛使用 OR-Tools 執行了應用程式,現在可以開始使用 開始使用 OR-Tools