Setting up a remote Python interpreter in Pycharm

I would like to connect to my raspberry pi using a remote interpreter. I managed to do this very well on Windows 7 using Pycharm, but with the upgrade to Windows 8.1 it no longer works. I tried to connect to raspberry pi (where it worked in win 7) and another with a fresh install of Raspbian (released 09-09-2014).

I also tried through Ubuntu, but to no avail. Has anyone out there been able to get this right in windows 8 or any linux flavor?

Should I try a key pair (OpenSSH or PuTTY)?

After adding the RSA key to the repository, the process freezes,

'Getting the version of the remote interpreter' ~ 'Connecting to 10.0.0.98'

+4
source share
1 answer

It works in PyCharm if you are deploying a remote SFTP server.

Tools> Deployment> Add> Enter Name and SFTP>

Enter the host name, port, root path (I said "/" without quotes) username and password.

Then, when creating a new project, change the interpreter to "Deployment Configuration" and select your SFTP server.

Click OK, then create.

You must be ready to go.

0
source

All Articles