got-10k / toolkit

Official Python toolkit for generic object tracking benchmark GOT-10k and beyond
http://got-10k.aitestunion.com/
MIT License
555 stars 95 forks source link

Dependency package related errors encountered during success plotting #22

Open MARMOTatZJU opened 5 years ago

MARMOTatZJU commented 5 years ago

After the following process pip3 install -r requirements.txt I still encountered the error

ModuleNotFoundError: No module named 'tkinter' 

solved by

sudo apt-get install python3-tk 

and the error

ModuleNotFoundError: No module named 'wget' 

solved by

pip3 install wget --user

So would you mind add these solutions in the requirement.txt so that the aforementioned errors would not be encountered by other users again ? Thanks a lot.