You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
(is Prism/Prism/Plugins/Apps/Blender/Integration/PrismInit.py in source code)
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
(is
Prism/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. **
The text was updated successfully, but these errors were encountered: