Closed moonlight2521 closed 8 years ago
I met the same problem in the newest dev branch
I got this when pulling the newest dev branch and updating pip packages via pip install -r requirements.txt
brew install wget
wget http://pgoapi.com/pgoencrypt.tar.gz && tar -xf pgoencrypt.tar.gz && cd pgoencrypt/src/ && make && mv libencrypt.so ../../encrypt.so
can you walk me through step by step
Thanks @HelloTroy this was helped.
Ran above full command to get and build encrypt.so and still getting same error.
File "/usr/lib/python2.7/ctypes/init.py", line 443, in LoadLibrary return self._dlltype(name) File "/usr/lib/python2.7/ctypes/init.py", line 365, in init self._handle = _dlopen(self._name, mode) OSError: libencrypt.so: cannot open shared object file: No such file or directory (env) howard@KidsLaptop:~/OpenPoGoBot$ ls -ltra *.so -rwxrwxr-x 1 howard howard 254402 Aug 8 12:25 libencrypt.so -rwxrwxr-x 1 howard howard 254402 Aug 8 12:32 encrypt.so
On My Mavericks it works.
Just run previous command, cd in the main dir project and rename the moved file to encrypt.so
.
Resolved not found libencrypt.so issue by setting LD_LIBRARY_PATH to include . but now getting new issue after the first pokemon found is transferred.
[2016-08-08 14:49:18] [Transfer] Transferring caught Pokemon with CP NOT above 100 and IV NOT above 0.4 and excluding [''].
[2016-08-08 14:49:18] [Transfer] No Pokemon to transfer.
[2016-08-08 14:49:18] [Transfer] Transferred 0 Pokemon.
Traceback (most recent call last):
File "pokecli.py", line 361, in
Thank you HelloTroy, that solved it for me
Will open separate issue ticket since this doesn't appear related to the encrypt.so not found issue.
encrypt.so is not found! Please place it in the bots root directory or set libencrypt_location in config
where is the encrypt.so file?