Failed to start julia language server in VS Code

I get this error in VS Code:

Failed to start julia language server. Verify that the julia.executablePath configuration parameter points to the julia binary.

In user settings I put

"julia.executablePath": "c:\\Program Files\\Julia\\Julia-0.5.0\\bin\\julia.exe"

which is the correct executable path.

Julia works without problems in the console, and VS Code works fine with the old extension 0.4.2. I tried reinstalling both the extension and the VS code, but that didn't help.

I have been trying to fix the problem for some time, but I am running out of ideas. Can someone point out what I'm doing wrong?

+6
source share
4 answers

VS . Windows:

"julia.executablePath": "c:/Program Files/Julia/Julia-0.5.0/bin/julia.exe"

"Program Files", 8.3:

"julia.executablePath": "c:/PROGRA~1/Julia/Julia-0.5.0/bin/julia.exe"

, "C:\PROGRA ~ 1", "C:\PROGRA ~ 2", "C:\Program Files" "C:\Program Files (x86)" . .

+3

, julia.exe bin.

C:\Users\\AppData\Local\Julia-0.5.0\Bin\julia.exe

, .

C:\Users\\AppData\Local\Julia-0.5.0\julia.exe

0

,

0
source

Source: https://habr.com/ru/post/1663242/


All Articles