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
When trying to run a simple script (just testing) I get the following error:
$python3 src/uploader/ig_uploader.py
Traceback (most recent call last):
File "/Users/juanferreyra/workspaces/reddit-to-insta/src/uploader/ig_uploader.py", line 1, in <module>
from ensta import Mobile, Guest, Host, Web
File "/Users/juanferreyra/workspaces/reddit-to-insta/.venv/lib/python3.12/site-packages/ensta/__init__.py", line 2, in <module>
from ensta.WebSession import WebSession
File "/Users/juanferreyra/workspaces/reddit-to-insta/.venv/lib/python3.12/site-packages/ensta/WebSession.py", line 8, in <module>
import moviepy.editor
ModuleNotFoundError: No module named 'moviepy.editor'
First I didn't had ffmpeg and thrown another error, but after that couldn't do anything.
Here is the script, same error if using Mobile, Guest, Host or Web object:
from ensta import Mobile, Guest, Host, Web
guest = Guest()
messi = guest.profile("leomessi")
print(messi.full_name)
mobile = Mobile("reddit.latino","Eaferreropq250597#")
profile = mobile.profile("leomessi")
print(profile.full_name)
print(profile.biography)
Only thing that comes to mind is that moviepy library has changed something?
The text was updated successfully, but these errors were encountered:
When trying to run a simple script (just testing) I get the following error:
First I didn't had ffmpeg and thrown another error, but after that couldn't do anything.
Here is the script, same error if using Mobile, Guest, Host or Web object:
Only thing that comes to mind is that moviepy library has changed something?
The text was updated successfully, but these errors were encountered: