Hi! Thanks for this tool. In case it's helpful:
Im checking out the 4DGS workflow I couldn't activate it as is. I ran into 'subprocess' is not defined error.
What is working for me is adding: import subprocess within this function:
|
def install_dependencies(self): |
and cmd = [sys.executable, "-m", "pip", "install", "nerfstudio", "--no-deps"] instead of
|
cmd = [sys.executable, "-m", "pip", "install", "nerfstudio"] |
otherwise the default install fails for me.
After this it's running :)
Hi! Thanks for this tool. In case it's helpful:
Im checking out the 4DGS workflow I couldn't activate it as is. I ran into
'subprocess' is not definederror.What is working for me is adding:
import subprocesswithin this function:CorbeauSplat/app/gui/tabs/four_dgs_tab.py
Line 142 in 27b6f0a
and
cmd = [sys.executable, "-m", "pip", "install", "nerfstudio", "--no-deps"]instead ofCorbeauSplat/app/gui/tabs/four_dgs_tab.py
Line 152 in 27b6f0a
otherwise the default install fails for me.
After this it's running :)