Cannot install on Linux Blender 4.4 - import_3dm this platform linux-x64 isn't one of linux-x86_64
I download import_3dm-0.0.16_extension.zip (https://github.com/jesterKing/import_3dm/releases/download/0.0.16/import_3dm-0.0.16_extension.zip) and go into Edit Preferences > Get Extension > Install from Disk and browse to the zip file on Blender 4.4.1.
It unfortunately does not install, see the error on the bottom left as well as in the right console (different errors). Ignore the talking cow :)
(Fedora Linux instructions : blender==4.5 python==3.13)
In addition to fixing the .toml file:
#platforms = ["windows-x64", "macos-arm64", "linux-x86_64"]
platforms = ["windows-x64", "macos-arm64", "linux-x64"]
I found that I could enabled blender to 'see' the imported module by removing the 'modules/' folder in the .zip, and installing rhino3dm myself into blender's user folder:
pip install -t ~/.config/blender/4.5/scripts/addons/modules/ rhino3dm
You can check whether the pip command worked by running import pip; pip.main(['freeze']) in blender's python scripting window (which can be pulled up with Shift-F4).