在PyCharm上执行远程脚本时路径错误

时间:2017-07-29 22:26:36

标签: python pycharm filepath

我使用PyCharm在我的覆盆子pi中进行编程。然后,我将其设置为部署:

enter image description here enter image description here

而且,我还设置了调试以使用远程解释器

enter image description here

在我的树莓中,我可以在我设置的目录中看到我的脚本,/home/pi/foo

pi@penelo:~/foo $ pwd
/home/pi/foo
pi@penelo:~/foo $ ls
main.py  TestClass.py

但是,当我在PyCharm中运行debug时,它尝试在raspberry上的/tmp/pycharm_project_967中执行脚本,而不是/home/pi/foo

ssh://pi@192.168.15.15:22/usr/bin/python3 -u /home/pi/.pycharm_helpers/pydev/pydevd.py --multiproc --qt-support --client '0.0.0.0' --port 42609 --file /tmp/pycharm_project_967/main.py
bash: line 0: cd: /tmp/pycharm_project_967: No such file or directory

为什么呢?如何设置PyCharm以在/home/pi/foo/执行脚本?

1 个答案:

答案 0 :(得分:0)

我解决了我的问题。当我创建这个项目时,我错误地设置了配置Remote project location

我使用的是默认值,而不是/home/pi/foo

enter image description here