Getting an error when installing sectionproperties #366
-
Hi there, Any help is appreciated, this is the error I am getting Building wheel for rhino3dm (setup.py) ... error × python setup.py bdist_wheel did not run successfully.
ls_init_.py", line 103, in setup note: This error originates from a subprocess, and is likely not a problem with pip. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @nabsers1, maybe I can help you with this. My first question is if using sectionproperties with rhino input files is a feature you really want? If so then you may want to rather run section properties with python 3.9. If you're familiar with pyenv, and the like, this should not be an issue for you. The reason for the above issue (from what I can tell) is that there were some changes to python that the rhino3dm library did not keep up with and some of the cbindings kinda stopped working (this has been my experience at least). So I believe there are only wheels available for 3.9 and maybe 3.10. If this is not a feature you really want, I believe @robbievanleeuwen has included flags at install time that will remove this feature. See here, i.e. running |
Beta Was this translation helpful? Give feedback.
Hi @nabsers1, maybe I can help you with this. My first question is if using sectionproperties with rhino input files is a feature you really want?
If so then you may want to rather run section properties with python 3.9. If you're familiar with pyenv, and the like, this should not be an issue for you. The reason for the above issue (from what I can tell) is that there were some changes to python that the rhino3dm library did not keep up with and some of the cbindings kinda stopped working (this has been my experience at least). So I believe there are only wheels available for 3.9 and maybe 3.10.
If this is not a feature you really want, I believe @robbievanleeuwen has included flags at in…