-
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 #3123
Comments
|
pip install pgoapi |
i got this error too. bot works just fine an hour ago then this showed up |
I just solve this problem on Ubuntu |
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! |
Expected Behavior
hi, i have this problem when starting on debian:
root@raspberrypi:/home/pi/PokemonGo-Bot# python pokecli.py Traceback (most recent call last): File "pokecli.py", line 38, in <module> from pgoapi.exceptions import NotLoggedInException, ServerSideRequestThrottlingException, ServerBusyOrOfflineException ImportError: No module named pgoapi.exceptions
i've ran pip install git+https://github.com/keyphact/pgoapi.git but nothing...
anyone have an idea ? Thank's
Other Information
OS: Debian
The text was updated successfully, but these errors were encountered: