klikklak
Oh neat, it's a ... field.
Right, what is the status of python support for the pandora? does it exist and is it fast enough to do random productivity programs for it? Or maybe even games?
Python and PyGame will be available at launch IIRC. Python is in the Ångström repo, so you can install it whatever happens.klikklak said:Right, what is the status of python support for the pandora? does it exist and is it fast enough to do random productivity programs for it? Or maybe even games?
I think there's almost no chance of that. The default installation is based on Angstrom, and they don't have Python 3 in their repository. It should be available eventually (it's available for ARM from the Debian repositories), but I don't expect it to be standard in Pandora. Python 2 has been around for too long to replace it easily, so I would suggest focussing on that. Python 2.6 even includes a tool to convert to Python 3 (called 2to3), so just write your code in 2.6 such that it's easily convertible to 3. There actually aren't that many major differences, and the changes to print and integer division are probably the only ones a beginner would notice.marshal said:I hope they also include python3 in the default installation.
You mean like pyqt? It's in the repo (you could have checked, tsk tsk!). It might even be installed by default, but if not, "opkg install python-pyqt" will get it for you. If you want to distribute your applications to other Pandora users, the extra dependency might cause problems, but I'm not sure how they plan to deal with that.klikklak said:I presume it has a proper distro so that getting QT bindings won't be that hard if I go the productivity route?