forked from NVIDIA/cuda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.rst
More file actions
163 lines (94 loc) · 5.47 KB
/
Copy pathinstall.rst
File metadata and controls
163 lines (94 loc) · 5.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
Installation
============
Runtime Requirements
--------------------
``cuda.bindings`` supports the same platforms as CUDA. Runtime dependencies are:
* Linux (x86-64, arm64) and Windows (x86-64)
* Python 3.10 - 3.14
* Driver: Linux (580.65.06 or later) Windows (580.88 or later)
* Optionally, NVRTC, nvJitLink, NVVM, and cuFile from CUDA Toolkit 13.x
.. note::
The optional CUDA Toolkit components are now installed via the ``cuda-toolkit`` metapackage from PyPI for improved dependency resolution. Components can also be installed via Conda, OS-specific package managers, or local installers (as described in the CUDA Toolkit `Windows <https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html>`_ and `Linux <https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html>`_ Installation Guides).
Starting from v12.8.0, ``cuda-python`` becomes a meta package which currently depends only on ``cuda-bindings``; in the future more sub-packages will be added to ``cuda-python``. In the instructions below, we still use ``cuda-python`` as example to serve existing users, but everything is applicable to ``cuda-bindings`` as well.
Free-threading Build Support
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
As of cuda-bindings 13.0.2 and 12.9.3, **experimental** packages for the `free-threaded interpreter`_ are shipped.
1. Support for these builds is best effort, due to heavy use of `built-in
modules that are known to be thread-unsafe`_, such as ``ctypes``.
2. For now, you are responsible for making sure that calls into the ``cuda-bindings``
library are thread-safe. This is subject to change.
.. _built-in modules that are known to be thread-unsafe: https://github.com/python/cpython/issues/116738
.. _free-threaded interpreter: https://docs.python.org/3/howto/free-threading-python.html
Installing from PyPI
--------------------
.. code-block:: console
$ pip install -U cuda-python
Install all optional dependencies with:
.. code-block:: console
$ pip install -U cuda-python[all]
Where the optional dependencies include:
* ``nvidia-cuda-nvrtc`` (NVRTC runtime compilation library)
* ``nvidia-nvjitlink`` (nvJitLink library)
* ``nvidia-nvvm`` (NVVM library)
* ``nvidia-cufile`` (cuFile library, Linux only)
These are now installed through the ``cuda-toolkit`` metapackage for improved dependency resolution.
Installing from Conda
---------------------
.. code-block:: console
$ conda install -c conda-forge cuda-python
.. note::
When using conda, the ``cuda-version`` metapackage can be used to control the versions of CUDA Toolkit components that are installed to the conda environment.
For example:
.. code-block:: console
$ conda install -c conda-forge cuda-python cuda-version=13
Installing with uv
------------------
`uv`_ is a fast Python package and project manager. To install ``cuda-python`` using ``uv``:
.. code-block:: console
$ uv pip install cuda-python
To install with all optional dependencies:
.. code-block:: console
$ uv pip install "cuda-python[all]"
``uv`` can also manage virtual environments automatically:
.. code-block:: console
$ uv venv
$ uv pip install cuda-python
.. _uv: https://docs.astral.sh/uv/
Installing with pixi
--------------------
`pixi`_ is a cross-platform package manager built on top of the conda ecosystem. To install ``cuda-python`` in a pixi project:
.. code-block:: console
$ pixi init my-cuda-project
$ cd my-cuda-project
$ pixi add cuda-python --channel conda-forge --channel nvidia
Or add it to an existing ``pixi.toml``:
.. code-block:: toml
[dependencies]
cuda-python = ">=12.8.0"
.. note::
Use the ``cuda-version`` package to pin the CUDA Toolkit version in your pixi environment:
.. code-block:: console
$ pixi add cuda-version=13 --channel conda-forge
.. _pixi: https://pixi.sh/
Installing from Source
----------------------
Requirements
^^^^^^^^^^^^
* CUDA Toolkit headers[^1]
* CUDA Runtime static library[^2]
[^1]: User projects that ``cimport`` CUDA symbols in Cython must also use CUDA Toolkit (CTK) types as provided by the ``cuda.bindings`` major.minor version. This results in CTK headers becoming a transitive dependency of downstream projects through CUDA Python.
[^2]: The CUDA Runtime static library (``libcudart_static.a`` on Linux, ``cudart_static.lib`` on Windows) is part of the CUDA Toolkit. If using conda packages, it is contained in the ``cuda-cudart-static`` package.
Source builds require that the provided CUDA headers are of the same major.minor version as the ``cuda.bindings`` you're trying to build. Despite this requirement, note that the minor version compatibility is still maintained. Use the ``CUDA_HOME`` (or ``CUDA_PATH``) environment variable to specify the location of your headers. For example, if your headers are located in ``/usr/local/cuda/include``, then you should set ``CUDA_HOME`` with:
.. code-block:: console
$ export CUDA_HOME=/usr/local/cuda
See `Environment Variables <environment_variables.rst>`_ for a description of other build-time environment variables.
.. note::
Only ``cydriver``, ``cyruntime`` and ``cynvrtc`` are impacted by the header requirement.
Editable Install
^^^^^^^^^^^^^^^^
You can use:
.. code-block:: console
$ pip install -v -e .
to install the module as editable in your current Python environment (e.g. for testing of porting other libraries to use the binding).