From 88ebade191c0848fa346614fdd73625936674e0f Mon Sep 17 00:00:00 2001 From: Ryosuke Akiyama Date: Thu, 27 Jun 2019 20:00:10 +0900 Subject: [PATCH] Fix python readme `-D :=' is the correct option format for cmake. --- wrappers/python/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrappers/python/readme.md b/wrappers/python/readme.md index 4db81cabac..fbfed58fa1 100644 --- a/wrappers/python/readme.md +++ b/wrappers/python/readme.md @@ -30,10 +30,10 @@ Windows users can install the RealSense SDK 2.0 from the release tab to get pre- 2. Install Python and its development files via apt-get (Python 2 and 3 both work) * `sudo apt-get install python python-dev` or `sudo apt-get install python3 python3-dev` * **Note:** The project will only use Python 2 if it can't use Python 3 -3. Run the top level CMake command with the following additional flag `-DBUILD_PYTHON_BINDINGS=bool:true`: +3. Run the top level CMake command with the following additional flag `-DBUILD_PYTHON_BINDINGS:bool=true`: * `mkdir build` * `cd build` - * `cmake ../ -DBUILD_PYTHON_BINDINGS=bool:true` + * `cmake ../ -DBUILD_PYTHON_BINDINGS:bool=true` > **Note**: To force compilation with a specific version on a system with both Python 2 and Python 3 installed, add the following flag to CMake command: `-DPYTHON_EXECUTABLE=[full path to the exact python executable]` * `make -j4`