temporal-shift-module icon indicating copy to clipboard operation
temporal-shift-module copied to clipboard

No matching distribution found for onnxoptimizer>=0.1.1 on Jetson nano

Open lyf524951805 opened this issue 3 years ago • 3 comments

I can install onnx-simplifier on Jetson nano on Nov 10, but I can't install onnx-simplifier on Jetson nano on Nov 11, a mistake ‘Could not find a version that satisfies the requirement onnxoptimizer>=0.1.1 (from onnx-simplifier) (from versions: ) No matching distribution found for onnxoptimizer>=0.1.1 (from onnx-simplifier)’ . Does onnxoptimizer-0.1.1-cp37-cp37m-win_amd64.whl can't fit Jetson nano(aarch64) ?

lyf524951805 avatar Nov 11 '20 02:11 lyf524951805

Tried to solved it by building onnxoptimizer from source. onnx-simplifier uses the new onnxoptimizer since v0.2.19 . But that resulted in a protobuf error. 2nd approach was to install the previous version: pip3 install onnx-simplifier==0.2.18 which worked for me.

utileetdulce avatar Nov 24 '20 21:11 utileetdulce

I would add that in order for onnx-simplifier v0.2.18 to work you also need an older version of onnx. I tried 1.6.0 and that worked. More recent onnx releases have removed onnx.optimizer.

txf- avatar Apr 21 '21 09:04 txf-

Just faced this issue and installed both using pip3 install onnx==1.6.0 onnx-simplifier==0.2.18 Thanks

zubairahmed-ai avatar Sep 22 '21 05:09 zubairahmed-ai