From 19e1933e92bf1e022699de3f4169ee2a89036898 Mon Sep 17 00:00:00 2001 From: "Nat Kershaw (MSFT)" Date: Tue, 1 Mar 2022 20:30:23 -0800 Subject: [PATCH] Clarify Python package install instructions (#10718) --- docs/get-started/with-python.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/get-started/with-python.md b/docs/get-started/with-python.md index 18492f8c68..c10f92643f 100644 --- a/docs/get-started/with-python.md +++ b/docs/get-started/with-python.md @@ -16,20 +16,20 @@ Below is a quick guide to get the packages installed to use ONNX for model seria {:toc} -## Install ONNX Runtime (ORT) +## Install ONNX Runtime -On CPU - -```bash -pip install onnxruntime -``` - -On GPU +There are two Python packages for ONNX Runtime. Only one of these packages should be installed at a time in any one environment. The GPU package encompasses most of the CPU functionality. ```bash pip install onnxruntime-gpu ``` +Use the CPU package if you are running on Arm CPUs and/or macOS. + +```bash +pip install onnxruntime +``` + ## Install ONNX for model export