About "moviepy" package. Why I can not run this code?
I am writing a simple python code using the “moviepy” package. I installed this package using Pycharm feature: (Settings-Python Interpreter-Install) but I can not run the following like in my code:
from moviepy.editor import VideoFileClip, AudioFileClip
The Pycharm compiler says this error :
from moviepy.editor import VideoFileClip, AudioFileClip
ModuleNotFoundError: No module named 'moviepy.editor'
Any help is welcome.
Note: I am using the Python 3.9 version in Pycharm (the last one is 3.13)
Best Regards
请先登录再写评论。
Hi Hcovarrubi, have you tried running the script in your system terminal (outside of PyCharm) using the same virtual environment? If it fails with the same error there, it’s likely that the issue is not specific to PyCharm.