-
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
[HELP] No module named pgoapi.exceptions - line 38, in <module> #3261
Comments
Got the same problem after the last pull. |
Yes same problem with line 38. Sorry my english is bad |
This is probably caused by #3241 But thats just a guess |
No, it works with #3241. Do you run in vitrualenv? |
could you paste more of the pip output? |
I will clone it from scratch and try it again. EDIT: Cloned dev with no extras. Works now |
You need to |
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 try "source bin/activate" but nothing happen, you think problem is here? |
After: |
Ok, i try but same things.
|
i did manage to bypass this error after pip install -r requirements.txt BUT pip from the bot/scripts folder not from python:
|
Hi I have this problem...
"Traceback (most recent call last):
File "pokecli.py", line 38, in
from pgoapi.exceptions import NotLoggedInException, ServerSideRequestThrottlingException, ServerBusyOrOfflineException
ImportError: No module named pgoapi.exceptions"
After this : pip install -r requirements.txt, I have this error :
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/ly/ylvd8kvn1_zf4_21ldq1smz00000gn/T/pip-build-V34e5q/protobuf-to-dict/
Thanks for help, many users with same problem.
Other Information
OS: OSX Sierra
Git Commit: (run 'git log -n 1 --pretty=format:"%H"' and paste it here)
Python Version: Python 2.7.10
The text was updated successfully, but these errors were encountered: