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

How to configure Juno to launch julia from specific conda environment

我正在开发 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

如何配置 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 中使用它。