last week I jailbreaked my KV, and installed python on it, (
https://www.mobileread.com/forums/sho...d.php?t=153930 )
wrote a test script with UI and touch keyboard , it works petty good on kindle, but a little bit slow
then I try to install pypy on kindle, because it 7-10 times faster than standard python and new version of pypy support Tkinter UI module
there are three diff version of pypy for ARM cpu,
http://pypy.org/download.html
ARM Hardfloat Linux binary (ARMHF/gnueabihf, tar.bz2, Raspbian) (
ARM Hardfloat Linux binary (ARMHF/gnueabihf, tar.bz2, Ubuntu Raring)
ARM Softfloat Linux binary (ARMEL/gnueabi, tar.bz2, Ubuntu Precise)
i do not know which version can be matched with kindle,
then I tried all of them, but do not work
what i did:
download pypy package, unzip to /mnt/us/pypy folder, add a python env file in the folder
python env setting as follow:
#!/bin/sh
export PATH=/mnt/us/pypy/usr/bin/:$PATH
then
try to run ./mnt/us/pypy/bin/pypy
got error, can not find pypy
pypy folder structure :
pypy
....|------bin
............|------pypy
............|------libpypy-c.so
....|-------lib_pypy
................|..blalala
....|-------lib-python
................|..blalbla
....|-------site-packages
....|-------include
anyone can give me a hint? how to make pypy running on kindle, thanks!