updated readme files (#54)
authorAlexey Suhov <asuhov@users.noreply.github.com>
Fri, 14 Dec 2018 18:26:38 +0000 (21:26 +0300)
committeropenvino-pushbot <44090433+openvino-pushbot@users.noreply.github.com>
Fri, 14 Dec 2018 18:26:38 +0000 (21:26 +0300)
inference-engine/README.md
inference-engine/ie_bridges/python/README.md

index 1c8dc67..cfe61ff 100644 (file)
@@ -59,7 +59,7 @@ The software was validated on:
 5. In the `build` directory, run `cmake` to fetch project dependencies and generate a Visual Studio solution:
 ```sh
 cd build
-cmake -G "Visual Studio 15 2017 Win64" -T "Intel C++ Compiler 18.0" -DOS_FOLDER=ON ^
+cmake -G "Visual Studio 15 2017 Win64" -T "Intel C++ Compiler 18.0" ^
     -DCMAKE_BUILD_TYPE=Release ^
     -DICCLIB="C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2018\windows\compiler\lib" ..
 ```
@@ -69,5 +69,7 @@ cmake -G "Visual Studio 15 2017 Win64" -T "Intel C++ Compiler 18.0" -DOS_FOLDER=
 
 6. Build generated solution in Visual Studio 2017 or run `cmake --build . --config Release` to build from the command line.
 
+Before running the samples on Microsoft\* Windows\*, please add path to OpenMP library (<dldt_repo>/inference-engine/temp/omp/lib) and OpenCV libraries (<dldt_repo>/inference-engine/temp/opencv_4.0.0/bin) to the %PATH% environment variable.
+
 ---
 \* Other names and brands may be claimed as the property of others.
index d758aa0..b9704fa 100644 (file)
@@ -36,4 +36,11 @@ Then build generated solution INFERENCE_ENGINE_DRIVER.sln using Microsoft\* Visu
   make -j16
 ```
 
-Note: -DInferenceEngine_DIR parameter is needed to specify the folder with generated make files or Visual Studio solution used to build Inference Engine (see readme file in the inference-engine root folder).
\ No newline at end of file
+Note: `-DInferenceEngine_DIR` parameter is needed to specify the folder with generated make files or Visual Studio solution used to build Inference Engine (see readme file in the inference-engine root folder).
+
+Before running the Python samples, please manually replicate OpenVINO folders structure with Python modules:
+- create an empty folder `openvino/inference_engine`
+- move built `ie_api.so` and `__init__.py` files from the `<build_folder>/inference_engine` to `openvino/inference_engine` folder
+- create an empty `__init__.py` file in the `openvino` folder
+- add the root folder where `openvino` folder is located to the PYTHONPATH environment variable.
+- add the folder with Inference Engine libraries to LD_LIBRARY_PATH variable on Linux (or PATH on Windows).