I have a Windows box and a Linux red hat box.
Eclipse is installed on Windows, following instructions given on this eclipse page. I managed to set up a RSE server that runs on the Linux box; I am also able to create a project on the remote machine.
Actually I am using virtual environments on Linux and I would like to select them when developing.
Is there a way to define a remote interpreter for a PyDev or Django project?
Pycharm IDE support running your project/program from Remote Interpreter also the support deploying to remote server(which comes as part of Pro version).
Pycharm also does support Git/Vagrant/GoogleApp Engine.
I once had the same problem with a remote python interpreter inside an Ubuntu virtual machine. I guess you should be able to connect through
ssh
in your case also.Although Pycharm can have remote interpreters (even with virtual machines using Vagrant), some people like me prefer editors like Sublime Text 3, i.e., not IDE. There, you can specify a path to any interpreter within your host machine. I guess Pydev also allows to specify a python interpreter inside the host.
The easiest way (but maybe not the nicest) I could find to use a remote interpreter, was to mount the environment folder (where the python executable and modules were) of the virtual machine in my host. So, here's what you can do:
In the virtual machine (the guest) --> create a virtual environment in any path you want, for example,
~/myGuestEnvs/testEnv/
. You can do this usingvirtualenv
, which you previously installed withpip
.In your host --> install
win-sshfs
and mount the correspondent folder of the virtual machine in your host like this~/myGuestEnvs/testEnv/
-->~/myHostMountedFolder/
. If I understood well, you are coding from Windows and running the code on Linux. I must admit that it isn't the easiest to mount disks throughssh
on Windows, but it still possible! You can check out this SoF question for other ways.Always in your host --> point your python interpreter to the mounted folder:
python_interpreter
-->~/myHostMountedFolder/bin/python
.Careful, if you only mount/point the
bin
folder of the environment, where the python executable is, you will lost all the code completion, goto definition... usabilities of the IDE, since it won't be able to locate your imported modules.I should add that if the virtual machine is down, then Pydev won't be able to use the python_interpreter since the mounted folder will be empty. Everytime you code, you will have to start the virtual machine, if not, then it is possible that the default host python interpreter and host python packages are used.
The only product for Python I managed to get working in this manner (like Eclipse debugging remote code in Java) like this is (commercial, proprietary) WingIDE.
I managed to achieve this by doing the following:
1) Create a python venv
2) Set pydev interpreter to the venv by going to Window->Preferences->PyDev_Interpreters->Python Interpreter-> Browse for python/pypy
3) Backup the python executable if needed:
4) Create a new python executable with the same name:
5) Paste the following content:
6) Change remote_username, remote_interpreter and remote_hostname to match your configurations.
Enjoy !