flowtyone / ComfyUI-Flowty-TripoSR

TripoSR custom node for comfyui
GNU General Public License v3.0
372 stars 46 forks source link

No module named 'tsr.system' #39

Open ziziguai opened 3 months ago

ziziguai commented 3 months ago

from tsr.system import TSR ModuleNotFoundError: No module named 'tsr.system' image pip install transformers not work

IVIaV commented 2 months ago

Hi :)

Can you look for already installed transformers?

pip list

If transformers is already installed, just uninstall it with

pip uninstall transformers

In the installation guide from https://github.com/flowtyone/ComfyUI-Flowty-TripoSR the requirements.txt is refering to older versions... Change the requirements.txt to the following

omegaconf==2.3.0
Pillow==10.2.0
einops==0.7.0
transformers==4.38.2
trimesh==4.3.0
huggingface-hub
imageio[ffmpeg]
scikit-image

and try again

$ cd ComfyUI-Flowty-TripoSR
$ pip install -r requirements.txt

Hope this helps :)