Skip to content

Commit 7b9cb4e

Browse files
syassamiveerbhan
authored andcommitted
Update README_EPU.md
- Added `--compile_no_warning_as_error --skip_tests --skip_submodule_sync` to build instruction.
1 parent 17828cb commit 7b9cb4e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README_EPU.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ This repository contains the a distribution of onnxruntime with additional opera
1212
git clone --recursive https://github.com/quadric-io/onnxruntime onnxruntime
1313
cd onnxruntime
1414
# Install wheel
15-
pip install wheel
15+
pip3 install wheel
1616
# Build the python package
17-
./build.sh --build_wheel --config Release --parallel
17+
./build.sh --build_wheel --config Release --parallel --compile_no_warning_as_error --skip_tests --skip_submodule_sync
1818
```
1919

2020
## Install
2121
```
22-
pip install build/MacOS/Release/dist/onnxruntime-1.14.0-cp39-cp39-macosx_11_0_x86_64.whl
22+
# Find the wheel you just created
23+
$ find . -name '*.whl'
24+
./build/MacOS/Release/dist/onnxruntime-1.15.1-cp310-cp310-macosx_13_0_arm64.whl
25+
# Install it
26+
pip3 install ./build/MacOS/Release/dist/onnxruntime-1.15.1-cp310-cp310-macosx_13_0_arm64.whl
2327
```

0 commit comments

Comments
 (0)