xxlong0 / Wonder3D

Single Image to 3D using Cross-Domain Diffusion for 3D Generation
https://www.xxlong.site/Wonder3D/
GNU Affero General Public License v3.0
4.49k stars 351 forks source link

versions of torch and torchvision are dismatched. #80

Closed Jiakai-Zhang closed 7 months ago

Jiakai-Zhang commented 7 months ago

Congrats on your guys great work!

When I am trying to deploy this project on my own desktop, using pip install -r requirements.txt will lead to automatically install the latest torchvision which causes an error ModuleNotFoundError: No module named 'torch._dynamo' when run pip install git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch

It can be solved by manually set the torchvision's version in requirements.txt like torchvision==0.14.1 according to torch document.

Cheers,

flamehaze1115 commented 7 months ago

Thanks for your suggestion.