On Mon, Sep 17, 2018 at 10:54 AM, Raffaele Belardi <raffaele.bela...@st.com> wrote: > András Csányi wrote: >> Hi, >> >> Check this page: >> https://www.jetbrains.com/pycharm/features/editions_comparison_matrix.html > > I'm not the OP but am interested in the topic and currently just a noob in > Python. > > I'd use Python to develop programs for fun on an ARM-linux embedded board, > with the host > PC running Gentoo. I suppose that for debugging on the target I'd need this > feature: > "Remote run/debug" which is available only in the Pro edition, right? >
Yes. For all interested there is a .jar going around that has been modified to avoid the license check that is as far as I can tell safe; it does not require a network connection. There is also PyDev, based on Eclipse. Remote debug (which entails running) can be found documented at http://www.pydev.org/manual_adv_remote_debugger.html. Usually what I see is either sftp or rsync (over ssh) to the remote computer, then ssh to run the updated files. Alternatively you can ssh to the remote host and run vim within that session. Cheers, R0b0t1