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
when integrate mitsuba 0.6.0 64bit with python 3.6 64bit in win10 64: import os, sys sys.path.append('D:/RenderProject/mitsuba-0.6.0/dist/python/3.6') os.environ['PATH'] = 'D:/RenderProject/mitsuba-0.6.0/dist' + os.pathsep + os.environ['PATH'] import mitsuba
i got the error: Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: DLL load failed while importing mitsuba: The specified module could not be found.
any one know how to solve this?
The text was updated successfully, but these errors were encountered:
Similar error. I was building on linux (WSL) previously and couldn't build from source with 3.6 for some reason. Ended up trying on windows but I got the same issue as you.
Maybe prebuilt dependencies are the issue here?
Reason: mitsuba.pyd needs boost_python3-vc141-mt-1_64.dll (no minor version of Python) but there is only boost_python36-vc141-mt-1_64.dll.
Further reason: boost_python36-vc141-mt-1_64.lib is linked to mitsuba, and it says the symbol definitions are in boost_python3-vc141-mt-1_64.dll (no minor version of Python). So it's a bad behavior of Boost.Python.
when integrate mitsuba 0.6.0 64bit with python 3.6 64bit in win10 64:
import os, sys
sys.path.append('D:/RenderProject/mitsuba-0.6.0/dist/python/3.6')
os.environ['PATH'] = 'D:/RenderProject/mitsuba-0.6.0/dist' + os.pathsep + os.environ['PATH']
import mitsuba
i got the error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: DLL load failed while importing mitsuba: The specified module could not be found.
any one know how to solve this?
The text was updated successfully, but these errors were encountered: