-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: No module named pgoapi.exceptions #3237
Comments
did you run pip install without errors? |
Exception: |
sesarch |
I had this error and fixed this by rerunning:
On Win10 |
In this particular case, pip install -r requirements.txt will install all listed package versions to the exact specified version. Most of them work just fine as pip should behave, as they are managed packages of the pypi. The exception here is the pgoapi package, listed on line 3. It is not a pypi package. It is a github repository. Pip handle it badly. In occasions you have to remove the whole repository cloned by pip (rm -rf pgoapi) and do pip install again, i.e. pip install -r requirements.txt This is a great opportunity to learn python! |
i don't know what to do. i uninstalled everything. even Python and pip. Make everything one more time - same error. |
If you did
then you will need to do
to get the bot to run properly. |
Reinstalled anything. still got this
File "pokecli.py", line 38, in
from pgoapi.exceptions import NotLoggedInException, ServerSideRequestThrottlingException, ServerBusyOrOfflineException
ImportError: No module named pgoapi.exceptions
The text was updated successfully, but these errors were encountered: