Emacs Remote Python Interpreter

Asked by Andreas Roehler

http://lists.gnu.org/archive/html/help-gnu-emacs/2012-06/msg00042.html

Am 04.06.2012 22:57, schrieb Matt McClure:
> I'd like to use Emacs as my IDE for a Python project as follows:
>
> 1. Emacs running on a Mac host machine.
> 2. Python running on a Linux guest VM.
> 3. A single copy of the code shared between the host and guest
> machines via NFS or VirtualBox shared folder.
>
> Emacs on the host machine would use the guest VM's Python interpreter
> for all execution, including code completion and debugging. I imagine
> using directory-local variables to configure a remote Python
> interpreter and a mapping between the respective host and guest
> filesystem path prefixes.
>
> What I'm looking for is pretty similar to [PyCharm's remote python
> interpreters][1]. Has anyone built something similar for Emacs, for
> Python environments or for any other language? I built a little
> [prototype][2], but it's just a toy so far.
>
> [1]: http://www.jetbrains.com/pycharm/webhelp/configuring-remote-python-interpreters.html
> [2]: https://github.com/matthewlmcclure/emacs-remote-python
>

Question information

Language:
English Edit question
Status:
Solved
For:
python-mode.el Edit question
Assignee:
No assignee Edit question
Solved by:
Andreas Roehler
Solved:
Last query:
Last reply:
Revision history for this message
Andreas Roehler (a-roehler) said :
#1

 Am 06.06.2012 15:58, schrieb Michael Albinus:
> Michael Albinus<email address hidden> writes:
>
>> (setq enable-local-variables t)
>
> Cut'n'waste. You must set
>
> (setq enable-remote-dir-locals t)
>
> Best regards, Michael.
>
>