Anaconda 如何配置Juno从特定conda环境启动julia

Anaconda 如何配置Juno从特定conda环境启动julia,anaconda,julia,atom-editor,conda,juno-ide,Anaconda,Julia,Atom Editor,Conda,Juno Ide,我正在Ubuntu 16.04上工作,我将julia安装在一个名为py3的conda环境中 然后我安装了,然后通过软件安装了包uber juno,但安装后Atom找不到julia安装,并向我发出以下错误消息: We tried to launch Julia from: julia This path can be changed in the settings. Details: /bin/sh: 1: julia: not found 如何将Atom配置为在py3 conda环境中与j

我正在Ubuntu 16.04上工作,我将julia安装在一个名为py3的conda环境中

然后我安装了,然后通过软件安装了包
uber juno
,但安装后Atom找不到julia安装,并向我发出以下错误消息:

We tried to launch Julia from:
julia
This path can be changed in the settings.
Details:
  /bin/sh: 1: julia: not found

如何将Atom配置为在py3 conda环境中与julia一起工作?

默认情况下,
Atom
的julia客户端将调用
julia
。如果保留此默认值,您只需在终端中激活您的环境,在该环境中调用
atom
,并轻松开始在atom中使用conda环境的Julia

$ source activate py3
# or just `$ activate py3` on Windows
(py3) $ atom
# or `atom --new-instance` to force create a new instance of atom
如果在您的环境中安装了Julia
py3
,那么您将能够在Atom中使用它