hkchengrex / Cutie

[CVPR 2024 Highlight] Putting the Object Back Into Video Object Segmentation
https://hkchengrex.com/Cutie/
MIT License
691 stars 69 forks source link

ModuleNotFoundError: No module named 'cutie' #44

Closed AlonDan closed 7 months ago

AlonDan commented 8 months ago

I followed the installation everything went smooth until I tried to run: python interactive_demo.py

I get this error:

(cutie) D:\AI\Cutie>python interactive_demo.py
Traceback (most recent call last):
  File "D:\AI\Cutie\interactive_demo.py", line 20, in <module>
    from gui.main_controller import MainController
  File "D:\AI\Cutie\gui\main_controller.py", line 20, in <module>
    from cutie.model.cutie import CUTIE
ModuleNotFoundError: No module named 'cutie'

I also tried this: pip install cutie

But I still get the same error.

I'm not a programmer so I can't understand how to fix it, Any suggestion how to fix that and make Cutie launch so I can test the demo?

Thanks ahead 🙏

hkchengrex commented 8 months ago

Clone our repository:

git clone https://github.com/hkchengrex/Cutie.git

Install with pip:

cd Cutie
pip install -e .

Did you do these?

AlonDan commented 8 months ago

Thanks for the reply, Yes, I did it but for some reason the git clone didn't download all the files I think. So what I did was to download manually the ZIP and I extracted it, then it worked :)