PyCharm: Configuring multi-hop remote Interpreters via SSH
To connect to the computer at my office I need to run ssh twice. First to connect to the host-1 and then from host-1 to host-2 and each one has different credentials. However the configuration menu in Pycharm only accepts one ssh tunnel. Configure Remote Python Interpreter dialog box Is there any way to set a multi-hop ssh to have access to the interpreter and data files on the host from local? AHA You can use port forwarding on ssh. If local system is A , the next ssh hop is B , and the target hop is C , open a terminal and run: ssh -L 6000:<server C IP>:22 <user_serverB>@<server B IP> You