Adding right-click-select request
https://blender.community/c/rightclickselect/lvnl/?sorting=hot
Adding right-click-select request
https://blender.community/c/rightclickselect/lvnl/?sorting=hot
This is related to blender/blender#127632
I've not had a chance to look at the script yet, but if the bundled wheels are Python version specific, does this mean I'm going to have to create new extensions every time Blender changes it's…
Looks like this might actually not be possible. Hopefully that will change in the future.
https://discuss.python.org/t/how-can-i-download-all-the-wheels-i-need-for-multiple-platforms/64466/6
I think cibuildwheel is for building wheel distributions, not downloading them.
pkginfo is not very helpful because it is not recursive, nor does it return the different binaries for different platforms. It's not much different than just looking at the requirements.txt…
For Linux, do I need both ARM64 and x86? Running pip on my Linux distro is only downloading the x86. Do I need wheels for both platforms?
The other big problem with this new system is it is now much more inconvenient to write code with 3rd party modules. I can't just pip install them anymore and then write some test code in the…
I also started a thread for this here:
https://blenderartists.org/t/how-do-i-download-wheels-for-the-allosaurus-python-module/1548791/6
From my research, there's no easy way to download wheels for multiple platforms. I happen to have a Mac so I was able to generate some Mac specific wheels there, but I'm currently setting up a…
I'm trying to download these, but it's not easy. These dependencies themselves have dependencies and when I download those I get incompatible versions, Windows binaries mixed in and multiple…
I don't need just the allosaurus wheel. I need all it's dependencies too. I'm trying to create an addon which I can then distribute to all platforms..
When I look through all the wheels…
One drawback I'm having with wheels is that I'm forced to add a lot of additional libraries that I didn't have to before. Gruut comes with several language packs, and now I have to bundle every…
That webpage only lists GPL and CC0 licenses. Why not MIT, BSD, LGPL and Apache as well? I've had users contact me in the past because the GPL scares off a lot of people. A lot of people seem…
To include wheels, I need to use the new blender_manifest.toml to organize my addon. But that will require me to change the licensing to GPL 3.0. I'd rather not do that. Why is Blender forcing…
I think that those modules that it depends on must be in whatever directory modules were installed to before I changed the permissions. Is there any way to have Blender looks for modules in that…
I changed the permissions of the site-packages directory. While this did finally allow me to install the library where Blender can find it, pip seems to not be recursively installing the…