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
Running Python 3.12.3 gives the following response
python3 pagekite.py
Traceback (most recent call last):
File "/Users/christopher/pagekite.py", line 36, in <module>
from imp import new_module
ModuleNotFoundError: No module named 'imp'
Running Python 3.12.3 gives the following response
imp
seems to have been deprecated since 3.4 and finally removed in 3.12 https://docs.python.org/3.11/library/imp.htmlAccording to the docs https://docs.python.org/3.11/library/importlib.html#module-importlib is the preferred replacement.
Downgrading to 3.11.9 fixes this.
The text was updated successfully, but these errors were encountered: