onnxruntime/docs/how-to/install.md
Faith Xu 0f6f0d9bbb
Major updates/restructure for documentation (#7609)
* Update documentation.

Updates documentation.

* Update tf-get-started.md
2021-05-10 15:19:37 -07:00

2.9 KiB

title parent nav_order
Install ORT How to 1

Install ONNX Runtime

{: .no_toc }

See the installation matrix for recommended instructions for desired combinations of target operating system, hardware, accelerator, and language.

Details on OS versions, compilers, language versions, dependent libraries , etc can be found under Compatibility.

Contents

{: .no_toc }

  • TOC placeholder {:toc}

Inference

The following build variants are available as officially supported packages. Others can be built from source from each release branch.

  1. Default CPU Provider
  2. GPU Provider - NVIDIA CUDA
  3. GPU Provider - DirectML (Windows) - recommended for optimized performance and compatibility with a broad set of GPUs on Windows devices
Repository Official build Nightly build
Python If using pip, run pip install --upgrade pip prior to downloading.
CPU: onnxruntime ort-nightly (dev)
GPU: onnxruntime-gpu ort-gpu-nightly (dev)
C#/C/C++ CPU: Microsoft.ML.OnnxRuntime ort-nightly (dev)
GPU: Microsoft.ML.OnnxRuntime.Gpu ort-nightly (dev)
Java CPU: com.microsoft.onnxruntime/onnxruntime
GPU: com.microsoft.onnxruntime/onnxruntime_gpu
nodejs CPU: onnxruntime

Note: Dev builds created from the master branch are available for testing newer changes between official releases. Please use these at your own risk. We strongly advise against deploying these to production workloads as support is limited for dev builds.

Requirements

{: .no_toc }

Training

COMING SOON