deepseek-ai / DreamCraft3D

[ICLR 2024] Official implementation of DreamCraft3D: Hierarchical 3D Generation with Bootstrapped Diffusion Prior
https://mrtornado24.github.io/DreamCraft3D/
MIT License
1.96k stars 86 forks source link

Missing envlight when running the first step of training after following instructions #15

Closed joseph-schwartz closed 9 months ago

joseph-schwartz commented 9 months ago

(venv) root@b755cfdb0b39:/workspace/DreamCraft3D# python launch.py --config configs/dreamcraft3d-coarse-nerf.yaml --train system.prompt_processor.prompt="$prompt" data.image_path="$image_path" Traceback (most recent call last): File "/workspace/DreamCraft3D/launch.py", line 252, in main(args, extras) File "/workspace/DreamCraft3D/launch.py", line 74, in main import threestudio File "/workspace/DreamCraft3D/threestudio/init.py", line 36, in from . import data, models, systems File "/workspace/DreamCraft3D/threestudio/models/init.py", line 1, in from . import ( File "/workspace/DreamCraft3D/threestudio/models/exporters/init.py", line 1, in from . import base, mesh_exporter File "/workspace/DreamCraft3D/threestudio/models/exporters/base.py", line 6, in from threestudio.models.materials.base import BaseMaterial File "/workspace/DreamCraft3D/threestudio/models/materials/init.py", line 1, in from . import ( File "/workspace/DreamCraft3D/threestudio/models/materials/pbr_material.py", line 4, in import envlight ModuleNotFoundError: No module named 'envlight'

MrTornado24 commented 9 months ago

Hi, did you install envlight by pip install git+https://github.com/ashawkey/envlight.git?

joseph-schwartz commented 9 months ago

Thank you, that is what I ended up finding, thank you for the help! I should have closed this when I found it.