简体   繁体   中英

Define remote interpreter on remote Linux machine using Pydev and RSE Server

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?

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 , ie, 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:

  1. In the virtual machine (the guest) --> create a virtual environment in any path you want, for example, ~/myGuestEnvs/testEnv/ . You can do this using virtualenv , which you previously installed with pip .

  2. 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 through ssh on Windows, but it still possible! You can check out this SoF question for other ways.

  3. 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.

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.

我设法以这种方式工作的唯一 Python 产品(如 Eclipse 用 Ja​​va 调试远程代码)是(商业的、专有的)WingIDE。

I managed to achieve this by doing the following:

1) Create a python venv

python3 -m venv /home/me/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:

mv /home/me/venv/bin/python3 /home/me/venv/bin/python3.bkp

4) Create a new python executable with the same name:

nano /home/me/venv/bin/python3

5) Paste the following content:

#!/bin/bash

remote_username=me
remote_interpreter=python3
remote_hostname=10.0.0.1

file_path=(${2//$remote_hostname/ })

ssh $remote_username@$remote_hostname "$remote_interpreter $1 ${file_path[1]}"

6) Change remote_username, remote_interpreter and remote_hostname to match your configurations.

Enjoy !

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM