File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,16 @@ This repository contains the a distribution of onnxruntime with additional opera
1212git clone --recursive https://github.com/quadric-io/onnxruntime onnxruntime
1313cd 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```
You can’t perform that action at this time.
0 commit comments