Python: IDE on one computer, interpreter on another

I would like to know if it is possible for the Python interpreter to be installed on one computer and have an IDE โ€œconnectedโ€ to that interpreter in another, that is: I want to program some scripts for my Raspberry Pi, but it's too slow if you use X Window is too tedious if you work in command line mode (open nano, edit, save, close, try, debug, etc.).

So the idea is that the IDE on my laptop and the script and linker in my raspberry Pi.

Is it possible?

Thanks in advance!

+4
source share
2 answers

maybe git hooks will be well set? I use it for some kind of continuous integration on my home server.

0
source

All Articles