Open sus-unn opened 2 years ago
Hi,
I changed that in the prism scripts as said before but it doesnt seem to work on Blender 3.4.1.
Any help would be appreciated.
Thanks,
@jonbragado What is the status of Prism? I'm ready to look into this specific issue first and why not others if it's still "active" Thanks
Currently all the development effort goes into Prism 2, which is currently in private beta and supports the latest Blender versions. It will be uploaded to Github in a few months. From my side there are no plans to update Prism 1, but community contributions for fixes like this are welcome.
Blender 3.2.2 Prism 1.3.0.83
It is unable to open Prism within blender 3.2 (As I remember, it was also impossible in 3.1, but I can't confirm) I looked into error message in blender console, turns out Prism only supports blender with Python version 3.7 or 3.9. So I have found a way around:
(This is not a full fix, I haven't looked deep into this temporary solution.)
In blender installation folder, look for
/blender/(version)/scripts/startup/PrismInit.py
(isPrism/Prism/Plugins/Apps/Blender/Integration/PrismInit.py
in source code)https://github.com/RichardFrangenberg/Prism/blob/development/Prism/Plugins/Apps/Blender/Integration/PrismInit.py
In line 44, change
if sys.version_info[1] not in [7, 9]:
toif sys.version_info[1] not in [7, 9, 10]:
(Re)start blender, Prism should work fine.
Again, this is temporary fix.