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