Juno won't open julia

Viewed 1440

I am trying to run juno in atom because I hope it will be easier to debug code than it has been for me in vs studio but upon starting julia from juno I received the following error message in an orange box in the top right:

Julia could not be started.

Couldn’t resolve version.

We tried to launch Julia from: julia This path can be changed in the settings.

Where in settings can this be changed? It is not clear to me.

2 Answers

You need to open the Settings tab (Ctrl+,), then go to Packages > julia-client.

The path is the first setting:

enter image description here

In addition to Nils's suggestion, here's a lazy approach that has worked for me on MacOS BigSur and probably works on other systems.

  1. Go to Juno Settings
  2. Go to the Uber-Juno Settings (scroll down)
  3. De-select: Disable (Don't run installation on Atom startup)
  4. Exit Atom and re-start.

What this does is force Atom to run the installation script on startup. Atom then looks for Julia on your system and, in my case, found it easily. Problem solved.

Related