Skip to content

Commit

Permalink
updated readme files (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
asuhov authored and openvino-pushbot committed Dec 14, 2018
1 parent e5d4940 commit fbc7a4a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion inference-engine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" ..
```
Expand All @@ -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.
9 changes: 8 additions & 1 deletion inference-engine/ie_bridges/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
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).

0 comments on commit fbc7a4a

Please sign in to comment.