import_3dm icon indicating copy to clipboard operation
import_3dm copied to clipboard

Cannot install on Linux Blender 4.4 - import_3dm this platform linux-x64 isn't one of linux-x86_64

Open Moult opened this issue 6 months ago • 1 comments

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 :)

Image

Moult avatar May 30 '25 01:05 Moult

(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).

mdda avatar Aug 24 '25 20:08 mdda