Thanks.
I installed Atom in standalone (1.35.1 x64), then installed Uber Juno, and points it to one of the 2 Julia installations (1.0.3 and 1.1.0).
Using my 1.1.0 as an example, my Juno.jl is at v0.5.4, and my Atom.jl is at v0.7.14. I tried updating them but got this error message:
(v1.1) pkg> update Juno
Updating registry at C:\Users\zpan\.julia\registries\General
Updating git-repo https://github.com/JuliaRegistries/General.git
Resolving package versions…
ERROR: Unsatisfiable requirements detected for package ASTInterpreter2 [e6d88f4b]:
ASTInterpreter2 [e6d88f4b] log:
├─possible versions are: 0.1.0-0.1.1 or uninstalled
├─restricted by julia compatibility requirements to versions: uninstalled
└─restricted by compatibility requirements with Atom [c52e3926] to versions: 0.1.0-0.1.1 — no versions left
└─Atom [c52e3926] log:
├─possible versions are: [0.1.0-0.1.1, 0.2.0-0.2.1, 0.3.0, 0.4.0-0.4.6, 0.5.0-0.5.10, 0.6.0-0.6.17, 0.7.0-0.7.15, 0.8.0-0.8.2] or uninstalled
└─restricted to versions 0.7.14 by an explicit requirement, leaving only versions 0.7.14
(v1.1) pkg> update Atom
Updating registry at C:\Users\zpan\.julia\registries\General
Updating git-repo https://github.com/JuliaRegistries/General.git
Resolving package versions…
ERROR: Unsatisfiable requirements detected for package ASTInterpreter2 [e6d88f4b]:
ASTInterpreter2 [e6d88f4b] log:
├─possible versions are: 0.1.0-0.1.1 or uninstalled
├─restricted by julia compatibility requirements to versions: uninstalled
└─restricted by compatibility requirements with Atom [c52e3926] to versions: 0.1.0-0.1.1 — no versions left
└─Atom [c52e3926] log:
├─possible versions are: [0.1.0-0.1.1, 0.2.0-0.2.1, 0.3.0, 0.4.0-0.4.6, 0.5.0-0.5.10, 0.6.0-0.6.17, 0.7.0-0.7.15, 0.8.0-0.8.2] or uninstalled
├─restricted to versions * by an explicit requirement, leaving only versions [0.1.0-0.1.1, 0.2.0-0.2.1, 0.3.0, 0.4.0-0.4.6, 0.5.0-0.5.10, 0.6.0-0.6.17, 0.7.0-0.7.15, 0.8.0-0.8.2]
├─restricted by julia compatibility requirements to versions: [0.7.0-0.7.15, 0.8.0-0.8.2] or uninstalled, leaving only versions: [0.7.0-0.7.15, 0.8.0-0.8.2]
└─restricted by compatibility requirements with Juno [e5e0dc1b] to versions: [0.1.0-0.1.1, 0.2.0-0.2.1, 0.3.0, 0.4.0-0.4.6, 0.5.0-0.5.10, 0.6.0-0.6.17, 0.7.0-0.7.15] or uninstalled, leaving only versions: 0.7.0-0.7.15
└─Juno [e5e0dc1b] log:
├─possible versions are: [0.1.0, 0.2.0-0.2.7, 0.3.0-0.3.2, 0.4.0-0.4.1, 0.5.0-0.5.5, 0.6.0, 0.7.0] or uninstalled
└─restricted to versions 0.5.4 by an explicit requirement, leaving only versions 0.5.4
If I try to add ASTInterpreter 2 (which is a surprise as I thought JuliaInterpreter replaced it), I got this:
(v1.1) pkg> add ASTInterpreter2
Resolving package versions…
ERROR: Unsatisfiable requirements detected for package DebuggerFramework [67417a49]:
DebuggerFramework [67417a49] log:
├─possible versions are: 0.1.0-0.1.2 or uninstalled
├─restricted to versions * by ASTInterpreter2 [e6d88f4b], leaving only versions 0.1.0-0.1.2
│ └─ASTInterpreter2 [e6d88f4b] log:
│ ├─possible versions are: 0.1.1 or uninstalled
│ └─ASTInterpreter2 [e6d88f4b] is fixed to version 0.1.1
└─restricted by julia compatibility requirements to versions: uninstalled — no versions left
(v1.1) pkg> add DebuggerFramework
Resolving package versions…
ERROR: Unsatisfiable requirements detected for package ASTInterpreter2 [e6d88f4b]:
ASTInterpreter2 [e6d88f4b] log:
├─possible versions are: 0.1.0-0.1.1 or uninstalled
├─restricted by julia compatibility requirements to versions: uninstalled
└─restricted by compatibility requirements with Atom [c52e3926] to versions: 0.1.0-0.1.1 — no versions left
└─Atom [c52e3926] log:
├─possible versions are: [0.1.0-0.1.1, 0.2.0-0.2.1, 0.3.0, 0.4.0-0.4.6, 0.5.0-0.5.10, 0.6.0-0.6.17, 0.7.0-0.7.15, 0.8.0-0.8.2] or uninstalled
└─restricted to versions 0.7.14 by an explicit requirement, leaving only versions 0.7.14
Any clue? Thanks!