iClone8 plugin ModuleNotFoundError
Home
»
iClone 8
»
Plug-in Developer (Python Open API)
https://forum.reallusion.com/Topic527607.aspx
Print Topic
|
Close Window
By B_v_R
-
3 Years Ago
When I'm trying to run a script in python this error occurs
<class 'ModuleNotFoundError'>, File: E:\iClone\iClone 8\Bin64\Lib\site-packages\shiboken2\files.dir\shibokensupport\__feature__.py, Line: 142
Any idea how to make this work?
Thanks!
By Johnny (RL)
-
3 Years Ago
Hi B_v_R,
Please try to modify the following line
from
PySide2.shiboken2
import
wrapInstance
to the new way, thanks.
from
shiboken2
import
wrapInstance
By B_v_R
-
3 Years Ago
It worked
Thank you!