You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I install the code on the main path thorugh: python setup.py install
But I don't know why this error when doing import video2gif. Looks like it can not find the model.py file which was already installed.
>>> import video2gif
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\user\Downloads\video2gif_code\video2gif\__init__.py", line 18, in <module>
import model
ModuleNotFoundError: No module named 'model'
I install the code on the main path thorugh:
python setup.py installBut I don't know why this error when doing
import video2gif. Looks like it can not find the model.py file which was already installed.