Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-22 Thread Fabio Zadrozny
As a note, what I said should work in any remote machine (including a container/docker/etc.), although it's just the first step (after a remote interpreter is configured -- which should be configured to have the settings from the remote computer, we'd still need some mechanism to synchronize the co

Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-21 Thread Kelson Zawack
Actually if I am going to write some code I would like to aim for a use case that is more general in two ways. I would like to be able to have pydev running on my machine but run python in a container. Also the remote machine I want to run the code on is part of a cluster which means starting

Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-19 Thread Fabio Zadrozny
The first step would be being able to configure the interpreter for a remote machine... The main problem this doesn't work currently the way I said is that PyDev will call: ssh python -u 'local/path/to/interpreterInfo.py' So, the first step would be making that work (i.e.: run python on ssh but

Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-18 Thread Kelson Zawack
Sounds good. I would be happy to help develop some of these features. I don’t have a ton of time either, but if we could split it up into some small pieces I could make some incremental improvements over the next few months. Do you have suggestions on where to start? Kelson > On Aug 18, 2017

Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-18 Thread Fabio Zadrozny
Humm, I just checked it here and the issue is that it'll pass things from the local eclipse install expecting they'll be in the remote install I think that for having a remote interpreter I'll have to actually change the implementation to support the use-case better (you'll need too many worka

Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-16 Thread Kelson Zawack
Hi Fabio - Thanks for the suggestion. I tried what you suggested, but when I try to add my shell script as an interpreter in the preferences dialogue pydev complains ‘Unable to get info on the interpreter … common reasons include specifying an invalid interpreter (usually a link to the actual

Re: [Pydev-code] running a remote interactive interpreter session from pydev

2017-08-14 Thread Fabio Zadrozny
Hi Kelson, I must say that I haven't really tested this... in theory you could create a python interpreter which is a shell script which would then run a python over ssh and with a partition created with sshfs, things should work (just make sure that the partition locally maps to the same path rem