I want to convert my script to an .exe and have tried it with pyinstaller.
The problem is that moviepy is not imported.
I imported moviepy as import moviepy.editor as me
(in script.py).
So i tried the hidden import.
The command was: pyinstaller --onefile --hidden-import=moviepy script.py
output:
3601 INFO: Analyzing hidden import 'moviepy'
3601 ERROR: Hidden import 'moviepy' not found
Could someone help me? Thanks :)