Skip to content Skip to sidebar Skip to footer

Python And Django IDE With Remote Editing?

I'm looking for an IDE that will allow me to edit remote Python projects and also has decent Django support, remote command execution, and maybe remote debugging. I've tried PyCha

Solution 1:

I have Pycharm setup on a Ubuntu 10.10. The key is to use "sshfs" - it maps to my web-host - via ssh. Those are the pre-reqs : ssh access, sshfs. (unless you can figure out a way to map ssh to a windows shared drive).

So once ssh, sshfs are setup, I create a linux mount locally - so my webhost's directory appears locally as "/webhostx" .. From then on Pycharm (or WingIde or any editor) does not care that "/webhostx" is really a remote folder mounted locally.

If all else fails there's always Emacs (everything included :-) ).

Pycharm also has a remote debugging feature - I am in the process of testing it with my host (webfaction).


Solution 2:

Emacs has tramp for remote editing on top of ssh, ftp or other protocols(works out of the box). nxhtml has support for editing Django templates (needs setup). I don't know about remote debugging. I've never done that.

Of course, Emacs is a lifestyle rather than an editor as most of its users will tell you so be warned.


Solution 3:

Try WingIDE.


Post a Comment for "Python And Django IDE With Remote Editing?"