A tip for compling and installing mitsuba3 locally from git #473
Replies: 3 comments 2 replies
-
Note that step 4) is only necessary on Windows. |
Beta Was this translation helpful? Give feedback.
-
one more hint, if we want to install it under a specific conda virtual environment, we need to specify the directory for mitsuba like:
|
Beta Was this translation helpful? Give feedback.
-
When I used FAILED: Release/python/mitsuba/init.pyi D:/mitsuba3/mitsuba3/_skbuild/win-amd64-3.8/cmake-build/Release/python/mitsuba/init.pyi ninja: build stopped: subcommand failed. An error occurred while building with CMake. How can I fix it? |
Beta Was this translation helpful? Give feedback.
-
in case anyone new to github like me want to use the latest mitsuba3 which haven't be released on pypi yet. here's my experience on how to compile it from git :)
git clone xxx.git --recursive
or download everything manually includingext
files.pyproject.toml
cd /ext/drjit/
->python setup.py build
->python setup.py install
cd /ext/zlib/
->chmod 777 -R configure
->./configure
->make test
->make install
mitsuba3-mater/
->python setup.py build
->python setup.py install
Beta Was this translation helpful? Give feedback.
All reactions