Install with Package Managers#

To install oneTBB with a package manager, run the corresponding command described below.

Tip

Refer to Intel® oneAPI Toolkits Installation Guide for Windows* OS to see the list of available packages.

Conda#

  1. To download a specific version with Conda*, run:

    conda install -c intel tbb==<version>
    
  2. To download the latest version available, run:

    conda install -c intel tbb
    

Tip

To change the default installation directory, run:

conda install -c intel tbb==<version> --prefix=C:\path\to\install\dir

PIP#

  1. To download a specific version with PIP*, run:

    pip install -c intel tbb==<version>
    
  2. To download the latest version available, run:

    pip install tbb
    

Tip

To change the default installation directory, run:

pip install --target=C:\path\to\install\dir tbb

NuGet#

To install oneTBB from NuGet*, do the following:

  1. Go to nuget.org

  2. Run:

nuget install inteltbb.devel.windows

Tip

To change the default installation directory, run:

nuget install inteltbb.devel.windows -OutputDirectory C:\path\to\install\dir