You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-["PyTorch on Jetson requiring NumPy 1.x while pyzed requires NumPy 2.x"](#pytorch-on-jetson-requiring-numpy-1x-while-pyzed-requires-numpy-2x)
20
20
-["CuPy failed to load libnvrtc.so.1x"](#cupy-failed-to-load-libnvrtc-so1x)
21
21
-[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
34
34
-[ZED SDK 5.1](https://www.stereolabs.com/developers/) and its dependency [CUDA](https://developer.nvidia.com/cuda-downloads)
35
35
- 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)
36
36
- 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
38
38
-[Cython >= 3.0.0](http://cython.org/#download)
39
39
-[Numpy >= 2.0](https://numpy.org/install/)
40
40
- 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
43
43
- To profit from the GPU acceleration and getting the data on the GPU (optional)
44
44
-[CuPy](https://cupy.dev/)
45
45
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.
47
47
48
48
```
49
49
python --version
@@ -205,13 +205,13 @@ Retrieved image on GPU: 1920x1200
205
205
206
206
## Troubleshooting
207
207
208
-
### "Numpy binary incompatiblity"
208
+
### "Numpy binary incompatibility"
209
209
210
210
```
211
211
Traceback (most recent call last):
212
212
...
213
213
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
215
215
```
216
216
217
217
This error usually means numpy isn't installed. To install it, simply run these commands :
0 commit comments