Lennard Berger
Lennard Berger
Hello @jekh I tested these changes and verified that it works on resources where brotli compression is enabled. What needs to be done in order to merge this to master...
You should definitely add `sessionStorage` to this list.
I would like to work on this feature! Ideally one would create a storage-unagnostic system where you could switch between multiple implementations of local/sessionstorage as long as they are standards...
Maybe there is an interest in moving this to the [django jazzband](https://jazzband.co) community?
I can confirm that `onnx==1.10.2` is installable on `Python 3.9.7` on my M1. ``` ProductName: macOS ProductVersion: 12.0.1 BuildVersion: 21A559 Apple clang version 13.0.0 (clang-1300.0.29.3) Target: arm64-apple-darwin21.1.0 Thread model: posix...
> @Fohlen the issue isn't with installing. If you run `import onnx` in Python arm64 this error should show: > > ``` > ~: which python > /opt/homebrew/bin/python > ~:...
> @Fohlen via Homebrew install. Are you running the arm64 version of `brew` and `python` and not the Rosetta emulation? > > ``` > ~: which brew > /opt/homebrew/bin/brew >...
> @Fohlen same issue. Can you check the Python binary is `Mach-O 64-bit executable arm64`. There are only [x86_64.whl](https://pypi.org/project/onnx/#files) so ideally a) an arm64 or universal wheel should be made...
@lutzroeder I found the following wheel in my cache: [onnx-1.10.2-cp39-cp39-macosx_12_0_arm64.whl.zip](https://github.com/onnx/onnx/files/7628893/onnx-1.10.2-cp39-cp39-macosx_12_0_arm64.whl.zip) I double-checked if at some point I compiled and installed the wheel myself, but I did not. Let's dig into...
Okay @lutzroeder the wheel is actually built from source. Please try the following: ``` pip3 install cython pip install --force-reinstall --no-cache-dir onnx ``` Your prompt should look a little something...