Skip to content

Commit b4ad279

Browse files
committed
note about cuda-bindings and -U
1 parent 9a967f6 commit b4ad279

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

cuda_bindings/docs/source/install.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,33 @@
1111
Only the NVRTC and nvJitLink redistributable components are required from the CUDA Toolkit, which can be obtained via PyPI, Conda, 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).
1212
```
1313

14+
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.
15+
16+
1417
## Installing from PyPI
1518

1619
```console
17-
$ pip install cuda-python
20+
$ pip install -U cuda-python
1821
```
1922

2023
Install all optional dependencies with:
2124
```{code-block} shell
22-
pip install cuda-python[all]
25+
pip install -U cuda-python[all]
2326
```
2427

2528
Where the optional dependencies are:
2629

2730
* nvidia-cuda-nvrtc-cu12 (Provides NVRTC shared library)
2831
* nvidia-nvjitlink-cu12>=12.3 (Provides nvJitLink shared library)
2932

33+
3034
## Installing from Conda
3135

3236
```console
3337
$ conda install -c conda-forge cuda-python
3438
```
3539

40+
3641
## Installing from Source
3742

3843
### Requirements
@@ -53,6 +58,7 @@ See [Environment Variables](environment_variables.md) for a description of other
5358
Only `cydriver`, `cyruntime` and `cynvrtc` are impacted by the header requirement.
5459
```
5560

61+
5662
### Editable Install
5763

5864
You can use

0 commit comments

Comments
 (0)