为什么Eclipse PyDev找不到现有文件?

时间:2019-02-12 09:16:21

标签: python eclipse

当我尝试使用Eclipse的PyDev运行python项目时,出现错误消息:

 File "Bob.py", line 35, in <module>
    with open('ConfigUser\project_config.yml', 'r') as stream_project_config:
FileNotFoundError: [Errno 2] No such file or directory: 'ConfigUser\\project_config.yml'
  • 我检查了文件是否存在(甚至可以通过单击错误消息来导航至该文件)
  • 从控制台运行相同的命令,效果完美
  • 检查了我的python项目的Eclipse Path设置,它们似乎还可以

尝试访问文件的代码:

with open('ConfigUser\project_config.yml', 'r') as stream_project_config:
    project_config_read = yaml.load(stream_project_config)
    build_variants = project_config_read[1]
    build_instrumentations = project_config_read[4]

有什么想法吗?

0 个答案:

没有答案