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

时间:2019-04-28 07:59:07

标签: anaconda julia atom-editor conda juno-ide

我正在Ubuntu 16.04上工作,我在conda-forge中的名为py3的conda环境中安装了julia。

然后我已经安装了Atom,然后通过该软件安装了软件包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

如何从py3 conda环境中配置Atom与julia一起使用?

1 个答案:

答案 0 :(得分:1)

默认情况下,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

如果您的环境py3中安装了Julia,则可以在Atom中使用它。