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'm trying to run a script, that worked perfectly on my Macbook, on a CentOS VPS and I'm seeing the following error:
Traceback (most recent call last):
File "edit.py", line 3, in <module>
from moviepy.editor import *
File "/usr/lib/python2.6/site-packages/moviepy/editor.py", line 22, in <module>
from .video.io.VideoFileClip import VideoFileClip
File "/usr/lib/python2.6/site-packages/moviepy/video/io/VideoFileClip.py", line 3, in <module>
from moviepy.video.VideoClip import VideoClip
File "/usr/lib/python2.6/site-packages/moviepy/video/VideoClip.py", line 22, in <module>
from .io.gif_writers import (write_gif,
File "/usr/lib/python2.6/site-packages/moviepy/video/io/gif_writers.py", line 5, in <module>
from moviepy.decorators import (requires_duration,use_clip_fps_by_default)
File "/usr/lib/python2.6/site-packages/moviepy/decorators.py", line 88
for (k,v) in kw.items()}
^
SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered:
Thanks for the report, that's scary. I guess it's because you are using an old python version which doesn't understand this syntax. I may fix this in the future, but the faster would be that you try installing python 2.7 or python 3. Tell me if that works.
I'm trying to run a script, that worked perfectly on my Macbook, on a CentOS VPS and I'm seeing the following error:
The text was updated successfully, but these errors were encountered: