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
Whenever I try to enable the addon Blender freezes for a bit. Then it shows this
Traceback (most recent call last):
File "(path-to)\Blender\3.4\scripts\modules\addon_utils.py", line 333, in enable
mod = import(module_name)
File (path-to)\Blender\3.4\scripts\addons\fast_pbr_viewport_render_init_.py", line 129, in
import imgui
ModuleNotFoundError: No module named 'imgui'
I tried opening a Windows terminal and running
pip install imgui[full]
Still no luck activating it.
The text was updated successfully, but these errors were encountered:
in a terminal calls the pip installation on your path - not the one in your Blender installation, so if you were to install pip packages manually (something you shouldn't have to do, as my addon will install all dependencies for you) you would have to make sure its the pip installation that comes with blender that you're calling. Running something like:
in Blenders Python console could probably work though - this is in fact exactly what my addon is running under the hood (for several dependencies, but again, my addon does this for you)
Whenever I try to enable the addon Blender freezes for a bit. Then it shows this
Traceback (most recent call last):
File "(path-to)\Blender\3.4\scripts\modules\addon_utils.py", line 333, in enable
mod = import(module_name)
File (path-to)\Blender\3.4\scripts\addons\fast_pbr_viewport_render_init_.py", line 129, in
import imgui
ModuleNotFoundError: No module named 'imgui'
I tried opening a Windows terminal and running
pip install imgui[full]
Still no luck activating it.
The text was updated successfully, but these errors were encountered: