Reputation: 37
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:
rm -f /usr/local/bin/julia sudo ln -s /Applications/Julia-1.6.app/Contents/Resources/julia/bin/julia /usr/local/bin/julia
"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!
Upvotes: 1
Views: 722
Reputation: 2554
As per the settings description, please set julia.executablePath
instead of julia.environmentPath
. The latter setting can be ignored except for fairly special circumstances.
Upvotes: 1