Julia executable path

I am trying to get Julia to work in Vscode on Ubuntu.

$ which julia
/snap/bin/julia

“julia.executablePath”: “/snap/bin/julia”

But Julia is not recognized. Am I using the correct path?

Can’t you install the language using the recommended method?

If you install using juliaup, the path should be automatically set:

curl -fsSL https://install.julialang.org | sh

See Install Julia

1 Like

What happens if you leave “julia.executablePath” empty?

BTW, why don’t you consider installing via juliaup, as mentioned above.

The motivation was to use Ubuntu’s Snap package system. I’ve since changed to using Pop!_OS and proceeded to follow the recommended method successfully.