Remote debugging + remote interpreter not working
I configured a remote interpreter and have some local sources. But when I configure/debug a test (with target /Users/yang/.../test_foo.py), I see that the remote ssh command isn't able to file this local path:
ERROR: file not found: /Users/yang/.../test_foo.py
Why's it looking for the local path on the remote server? Do I need to manually run rsync or something to copy the sources to the remote server first before every debug session?
ERROR: file not found: /Users/yang/.../test_foo.py
Why's it looking for the local path on the remote server? Do I need to manually run rsync or something to copy the sources to the remote server first before every debug session?
Please sign in to leave a comment.
There is an option to upload files automatically on save.
ERROR: file not found: /tmp/pycharm-test-deploy/.../test_foo.py
To synchronize local files to the remote server for the first time refer to http://www.jetbrains.com/pycharm/webhelp/uploading-and-downloading-files.html .
Double check that mappings are configured correctly in the Deployment configuration, otherwise your files will end up in a wrong folder.
I try to set a breakpoint in the debugger and it is looking in my local path for files that it should be looking in the remote path. It seems to be skipping the whole look down the path thing.