Skip to content

Commit b5eda1c

Browse files
author
Julien Delclos
committed
Mention py3.14
1 parent 7d2aaad commit b5eda1c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This package lets you use the ZED stereo camera in Python 3. The Python API is a
1515
- [GPU data retrieval using CuPy](#GPU-data-retrieval-using-CuPy)
1616
- [Validate your CuPy setup](#validate-your-CuPy-setup)
1717
- [Troubleshooting](#troubleshooting)
18-
- ["Numpy binary incompatiblity"](#numpy-binary-incompatiblity)
18+
- ["Numpy binary incompatibility"](#numpy-binary-incompatibility)
1919
- ["PyTorch on Jetson requiring NumPy 1.x while pyzed requires NumPy 2.x"](#pytorch-on-jetson-requiring-numpy-1x-while-pyzed-requires-numpy-2x)
2020
- ["CuPy failed to load libnvrtc.so.1x"](#cupy-failed-to-load-libnvrtc-so1x)
2121
- [Compiling the Python API from source (only for developers of the python wrapper)](#compiling-the-python-api-from-source-only-for-developers-of-the-python-wrapper)
@@ -34,7 +34,7 @@ To start using the ZED SDK in Python, you will need to install the following dep
3434
- [ZED SDK 5.1](https://www.stereolabs.com/developers/) and its dependency [CUDA](https://developer.nvidia.com/cuda-downloads)
3535
- For the ZED SDK 5.0 compatible version, use the [zedsdk_5.X branch](https://github.com/stereolabs/zed-python-api/tree/zedsdk_5.X) or the [5.0.7 release tag](https://github.com/stereolabs/zed-python-api/releases/tag/v5.0.7)
3636
- For the ZED SDK 4.2 compatible version, use the [zedsdk_4.X branch](https://github.com/stereolabs/zed-python-api/tree/zedsdk_4.X) or the [4.2 release tag](https://github.com/stereolabs/zed-python-api/releases/tag/v4.2)
37-
- Python 3.8+ x64
37+
- Python 3.8 to Python 3.14
3838
- [Cython >= 3.0.0](http://cython.org/#download)
3939
- [Numpy >= 2.0](https://numpy.org/install/)
4040
- To use most of our samples (optional)
@@ -43,7 +43,7 @@ To start using the ZED SDK in Python, you will need to install the following dep
4343
- To profit from the GPU acceleration and getting the data on the GPU (optional)
4444
- [CuPy](https://cupy.dev/)
4545

46-
Please check your python version with the following command. The result should be 3.8 or higher.
46+
Please check your python version with the following command. The result should be between 3.8 and 3.14.
4747

4848
```
4949
python --version
@@ -205,13 +205,13 @@ Retrieved image on GPU: 1920x1200
205205
206206
## Troubleshooting
207207
208-
### "Numpy binary incompatiblity"
208+
### "Numpy binary incompatibility"
209209
210210
```
211211
Traceback (most recent call last):
212212
...
213213
File "__init__.pxd", line 918, in init pyzed.sl
214-
ValueError: numpy.ufunc size changed, may indicate binary incompatiblity. Expected 216 from C header, got 192 from PyObject
214+
ValueError: numpy.ufunc size changed, may indicate binary incompatibility. Expected 216 from C header, got 192 from PyObject
215215
```
216216
217217
This error usually means numpy isn't installed. To install it, simply run these commands :

0 commit comments

Comments
 (0)