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
Deprecated since version 3.4, will be removed in version 3.12: The imp module is deprecated in favor of importlib.
Currently this throws the following error:
Traceback (most recent call last):
File "/home/sappukuttan/miniconda3/bin/hd-bet", line 7, in
exec(compile(f.read(), file, 'exec'))
File "/<>/HD-BET/HD_BET/hd-bet", line 4, in
from HD_BET.run import run_hd_bet
File "/<>/HD-BET/HD_BET/run.py", line 6, in
import imp
ModuleNotFoundError: No module named 'imp'
The text was updated successfully, but these errors were encountered:
The
imp
module has been removed in Python3.12 in favor of importlib.Ref: https://docs.python.org/3.11/library/imp.html
Currently this throws the following error:
The text was updated successfully, but these errors were encountered: