Likely a dumb question with an obvious answer, but:
Is there an IDLE for Python on the Arduino Yun like there is in the Raspberry Pi?
I can write scripts externally and transfer to the Yun, but I can't debug them since external editor does not have all the Python that's in the Yun (e.g. the Bridge stuff).
I've written and run simple sketches/scripts the use Bridge to pass data back and forth between the Arduino side and the Linino side, but will need the IDLE as Python scripts grow more complicated.
In advance, thanks for the help.
GKinAZ:
Likely a dumb question with an obvious answer, but:
Is there an IDLE for Python on the Arduino Yun like there is in the Raspberry Pi?
No, there isn't, as the Yun only has a web UI (via Luci) and not a graphical interface via video chip like the rPi...
Ralf
You can also get a command-line shell on the Yun via SSH. Once you have that you can run the python interactive interpreter and debugger. You can go further and install ipython which enhances the interactive interpreter, and ipdb, which provides an ipython enhanced version of the python debugger. Ipython may be packaged and available through the openwrt/linino package repository. If not, it can be installed via pip or easy_install (which you'll probably have to use to install ipdb).