I was using PyInstaller to make a .exe file and encountered this issue.
I thought that adding --paths="\Users\user\AppData\Local\Programs\Python\Python311\Lib\site-packages\asyncio\base_events.py" to my pyinstaller command line would solve the issue, but it has not. I'm a bit stumped on what I should do to get the PyInstaller to find this module. I tried adding "from asyncio import base_events" to my original python file as well as adding hidden imports for asyncio and asyncio.base_events as well, which all did not work. I noticed that this asyncio was stemming from pyupbit and also included a path directory for the pyupbit module file to no avail as well. Help would be appreciated!