Skip to content

Commit e596d80

Browse files
authored
update README to help compilation issues
1 parent 1ad0ed7 commit e596d80

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@ This package lets you use the ZED stereo camera in Python 3.
99

1010
### Prerequisites
1111

12-
- [ZED SDK 2.1](https://www.stereolabs.com/developers/) and its dependencies
12+
- [ZED SDK](https://www.stereolabs.com/developers/) and its dependencies
1313
([CUDA](https://developer.nvidia.com/cuda-downloads))
14-
- [Python 3.5+ (x64)](https://www.python.org/downloads/)
15-
- C++ compiler
14+
- Python 3.5+ (x64). ([Windows installer](https://www.python.org/ftp/python/3.6.2/python-3.6.2-amd64.exe))
15+
- C++ compiler (VS2015 recommended)
1616
- [Cython 0.26](http://cython.org/#download)
1717
- [Numpy 1.13.1](https://www.scipy.org/scipylib/download.html)
1818

1919
Cython and Numpy can be installed via pip.
20+
```
21+
python -m pip install cython numpy
22+
```
2023

2124

2225
### Build the plugin
@@ -26,13 +29,11 @@ python setup.py build
2629
python setup.py install
2730
```
2831

32+
If an __error__ occurs during the compilation, make sure that you're using the latest [ZED SDK](https://www.stereolabs.com/developers/) and that you installed an x64 version of python. `python -c "import platform; print(platform.architecture())"`
33+
2934
The packages *.pyd* for Windows or *.so* for Linux will be generated and installed.
3035

31-
You can use
32-
```
33-
python setup.py cleanall
34-
```
35-
to remove every cpp files generated and build directory.
36+
You can use `python setup.py cleanall` to remove every cpp files generated and build directory.
3637

3738
## Use the plugin
3839

0 commit comments

Comments
 (0)