0

So I'm trying to import moviepy.editor and I keep getting errors, I'm new to python so if the answer is obvious I'm sorry for wasting your time.

Here's my code:

import os
from moviepy.editor import VideoFileClip, concatenate_videoclips

print("Program Started\n")

When I ever I run it I get this error.

When I remove from moviepy.editor import VideoFileClip, concatenate_videoclips though, it doesn't give me an error.

rabbibillclinton
  • 410
  • 4
  • 17

1 Answers1

0

Turns out this is an bug with numpy, by doing pip uninstall numpy and uninstalling numpy and then reinstalling the previous version by doing pip install numpy==1.19.3 my code started working again.

rabbibillclinton
  • 410
  • 4
  • 17