-
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
Wrong ELF class #5786
Comments
So you are running on RespBerry PI ? |
yes |
@azraelppuk Got the same error as yours (i'm running this on Pi too), would you be kind enough to point me to download the file "libencrypt-linux-arm-32.so" and "libniantichash-linux-arm-32.so"? Also, to get pi working, is there a better way to "pip install -r requirements.txt" (or something like that)? Thanks. |
Had the same problem on a minix neo 7 running ubuntu 14.04 ARM This solved it |
yeah also need to change if _platform.lower() == "linux" or _platform.lower() == "linux2": to if _platform.lower() == "linux" or _platform.lower() == "linux2": (or rather add in the additional check) |
Thanks a lot @azraelppuk , it's working now. All up and running in Rasbian. |
let me close this issue |
got error:
[2016-11-07 21:14:37] [ERROR] [u'OSError: /home/pi/PokemonGo-Bot-Dev-29/PokemonGo-Bot//src/pgoapi/pgoapi/lib/libencrypt-linux-x86-64.so: wrong ELF class: ELFCLASS64'
investigated and local/pokemongo_bot/init.py contained
if _platform.lower() == "linux" or _platform.lower() == "linux2":
file_name = 'src/pgoapi/pgoapi/lib/libencrypt-linux-x86-64.so'
changed to
if _platform.lower() == "linux" or _platform.lower() == "linux2":
file_name = 'src/pgoapi/pgoapi/lib/libencrypt-linux-arm-32.so'
then then proceeded for me. This isn't the fix, needs to properly check platform.
The text was updated successfully, but these errors were encountered: