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
But I cannot run it because imp cannot be installed
me@home:~/Upload-Assistant$ python3.12 upload.py
Traceback (most recent call last):
File "/home/me/Upload-Assistant/src/prep.py", line 30, in <module>
import ffmpeg
File "/home/me/.local/lib/python3.12/site-packages/ffmpeg/__init__.py", line 2, in <module>
from . import nodes
File "/home/me/.local/lib/python3.12/site-packages/ffmpeg/nodes.py", line 3, in <module>
from past.builtins import basestring
File "/usr/lib/python3/dist-packages/past/builtins/__init__.py", line 54, in <module>
from past.builtins.misc import (apply, chr, cmp, execfile, intern, oct,
File "/usr/lib/python3/dist-packages/past/builtins/misc.py", line 45, in <module>
from imp import reload
ModuleNotFoundError: No module named 'imp'
None
Missing Module Found. Please reinstall required dependancies.
pip3 install --user -U -r requirements.txt
If I try to install it manually:
me@home:~/Upload-Assistant$ pip3.12 install --user -U imp
ERROR: Could not find a version that satisfies the requirement imp (from versions: none)
ERROR: No matching distribution found for imp
I can install it on 3.10 but the app won't run on 3.10
The incompatibility of ffmpeg-python with python 3.12 seems to be confirmed by this PR and bug
But I might be missing something because the app clearly works in the docker image!
The text was updated successfully, but these errors were encountered:
I am trying to run on my local machine (ubuntu 20.04)
I've run
pip3.12 install --user -U -r requirements.txt
But I cannot run it because
imp
cannot be installedIf I try to install it manually:
I can install it on 3.10 but the app won't run on 3.10
The incompatibility of ffmpeg-python with python 3.12 seems to be confirmed by this PR and bug
But I might be missing something because the app clearly works in the docker image!
The text was updated successfully, but these errors were encountered: