I am doing this on macOS. I am trying to get Julia set up in Visual Studio Code. When I start typing in Python or C for instance, the IntelliSense just works without hassle. I just downloaded Julia to start learning, but I can't get the IntelliSense working. Here are the steps that I have taken so far:
- Downloaded Julia
- Installed JuliaLang Extension for VSC
- Set it up in the terminal and tested it by running their Mandelbrot.jl file
- Ran the following command:
rm -f /usr/local/bin/julia sudo ln -s /Applications/Julia-1.6.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
- Opened up the settings.json and entered this in:
"julia.executablePath": "/Applications/Julia-1.6.app"
I am wondering if my path is correct or has anything to do with the IntelliSense problem. Any help would be appreciated. Thank you!
CodePudding user response:
As per the settings description, please set julia.executablePath
instead of julia.environmentPath
. The latter setting can be ignored except for fairly special circumstances.