Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Install cuOpt for Python, C, or server via pip, conda, or Docker; verify the install. For building cuOpt from source, see cuopt-developer.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 52% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 13% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 20% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 87% | 0% |
Install cuOpt to use it from Python, C, or as a REST server. For building cuOpt from source to contribute or modify it, see cuopt-developer.
cuopt-cu12 / libcuopt-cu12 with CUDA 12).cuopt-cuXX (Python) depends on libcuopt-cuXX (C), so installing the Python package also installs the C library and headers. Installing libcuopt-cuXX on its own does not install the Python API.Ask these if not already clear:
nvcc --version or nvidia-smi.Choose one — do not run both. The second install would override the first and can cause CUDA / package mismatch.
bash pip install --extra-index-url=https://pypi.nvidia.com cuopt-cu13
bash pip install --extra-index-url=https://pypi.nvidia.com 'cuopt-cu12==26.2.*'
bashconda install -c rapidsai -c conda-forge -c nvidia cuopt
pythonimport cuopt print(cuopt.__version__) from cuopt import routing dm = routing.DataModel(n_locations=3, n_fleet=1, n_orders=2)
The C API ships in libcuopt-cuXX, which is also pulled in as a dependency of cuopt-cuXX — so if you already installed the Python package, the C library and headers are already present. Install libcuopt standalone only when you want the C API without Python. Choose one of pip or conda — do not run both.
bash pip install --extra-index-url=https://pypi.nvidia.com libcuopt-cu13
bash pip install --extra-index-url=https://pypi.nvidia.com 'libcuopt-cu12==26.2.*'
bashconda install -c rapidsai -c conda-forge -c nvidia libcuopt
See references/verification_examples.md for the canonical C-API header/library find commands (conda and pip/venv variants).
bashpip install --extra-index-url=https://pypi.nvidia.com cuopt-server-cu12 cuopt-sh-client
bashconda install -c rapidsai -c conda-forge -c nvidia cuopt-server cuopt-sh-client
bashdocker pull nvidia/cuopt:latest-cuda12.9-py3.13 docker run --gpus all -it --rm -p 8000:8000 nvidia/cuopt:latest-cuda12.9-py3.13
bashpython -m cuopt_server.cuopt_service --ip 0.0.0.0 --port 8000 & sleep 5 curl -s http://localhost:8000/cuopt/health | jq .
No module named 'cuopt' → check pip list | grep cuopt, which python, reinstall with the correct extra-index-url.nvidia-smi and nvcc --version; ensure the package CUDA suffix (cu12 vs cu13) matches the installed CUDA.cuopt-cuXX pulls in libcuopt-cuXX as a transitive dependency, so the C library (libcuopt.so) and headers (cuopt_c.h) are already available after installing the Python package. The reverse is not true: libcuopt-cuXX alone does not install the Python bindings.cuopt-developer — build cuOpt from source and contribute to the codebase.Other measured skills in the registry, with their headline benchmark lift.