在windows中集成Juno IDE与Atom编辑器for julia

在windows中集成Juno IDE与Atom编辑器for julia,julia,atom-editor,juno-ide,Julia,Atom Editor,Juno Ide,在安装Atom并从将其与Juno IDE集成后,我发现启动时显示了以下错误:- Julia could not be found. We tried to launch Julia from: C:\Program Files\Julia-0.4.6\bin\julia.exe This path can be changed in the settings. 安装路径是正确的。那么如何纠正这个错误呢 附录: 我的config.cson文件: "*": autosave: enab

在安装Atom并从将其与Juno IDE集成后,我发现启动时显示了以下错误:-

Julia could not be found. We tried to launch Julia from: C:\Program Files\Julia-0.4.6\bin\julia.exe This path can be changed in the settings.
安装路径是正确的。那么如何纠正这个错误呢

附录: 我的
config.cson
文件:

"*":
  autosave:
    enabled: true
  core:
    destroyEmptyPanes: false
    openEmptyEditorOnStart: false
    themes: [
      "atom-dark-ui"
      "atom-dark-syntax"
    ]
  editor:
    showIndentGuide: true
    tabLength: 4
  "exception-reporting":
    userId: "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx"
  "julia-client":
    enableMenu: true
    enableToolBar: true
    juliaPath: "'C:\\Program Files\\Julia-0.4.6\\bin\\julia.exe'"
    launchOnStartup: true
  "tool-bar":
    position: "Left"
  "uber-juno":
    disable: true
  welcome:
    showOnStartup: false

你试过把路径加引号吗?@idleberg我试过双引号和单引号——同样的问题。你确定那条路径吗?默认值为
C:\Users\USER\AppData\Local\Julia-0.4.6\bin
。若要仔细检查是否存在其他问题,请尝试使用该路径安装到默认位置,并查看其是否有效。在中调试该路径可能更容易。请将
config.cson
中的确切路径设置添加到问题中?