mirror of
https://github.com/brentvollebregt/auto-py-to-exe.git
synced 2026-04-25 19:55:49 +03:00
[GH-ISSUE #408] ModuleNotFoundError: No module named 'gevent' #328
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Lizzit on GitHub (Jul 15, 2023).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/408
Quick Checks
Describe the bug
I've tryed to download the package from github but when i run the "run.py" it throw me the following error:
Traceback (most recent call last):
File "d:\Programmazione\auto-py-to-exe-master\run.py", line 6, in
from auto_py_to_exe import main as apte
ages\eel_init_.py", line 5, in
from gevent.threading import Timer
File "C:\Users\Elia\AppData\Local\Programs\Python\Python311\Lib\site-packages\gevent_init_.py", line 86, in
from gevent._hub_local import get_hub
File "C:\Users\Elia\AppData\Local\Programs\Python\Python311\Lib\site-packages\gevent_hub_local.py", line 101, in
import_c_accel(globals(), 'gevent._hub_local')
File "C:\Users\Elia\AppData\Local\Programs\Python\Python311\Lib\site-packages\gevent_util.py", line 148, in import_c_accel
mod = importlib.import_module(cname)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Elia\AppData\Local\Programs\Python\Python311\Lib\importlib_init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'gevent._gevent_c_hub_local'
I'm having the same error trying to install the program with pip install auto-py-to-exe and then running auto-py-to-exe
To Reproduce
Steps to reproduce the behavior (install dependencies, do this in the auto-py-to-exe UI):
Expected behavior
A clear and concise description of what you expected to happen.
Your Environment:
@github-actions[bot] commented on GitHub (Jul 15, 2023):
👋 Hi, just a reminder that if you haven't read the help post yet, give it a read to see if your issue is covered in it and make sure to follow the debugging section.
Also please note, as stated in the README, if your issue is only associated with your application and not auto-py-to-exe itself, please do not create an issue in this repository - instead, comment on the help post, video or create a new discussion.
@Lizzit commented on GitHub (Jul 15, 2023):
After hour of searching i tried to uninstall the library gevent and to reinstall it using python -m install gevent and it worked
@brentvollebregt commented on GitHub (Jul 15, 2023):
Great to hear you found a solution. From your reproduction steps, it appears you have forgotten to install the dependencies as outlined in the README's steps on running without installing.