Hey,
I am trying to use the remote development tools. I have a start_julia.sh
as julia.executablePath
script that looks like :
#!/bin/bash
module load <modules that need to be loaded before julia can run on this particular cluster>
julia "$@"
The command Julia: Start REPL
works fine and launches my script correctly. I am also using the Julia: persistent session: Enabled
function, so that I get back my REPL when I restart my client / reopen the remote workspace, which also works correctly.
The only issue is that Starting Julia Language server...
never ends and the Language server never starts. The Output: Julia language server
looks like :
[Error - 15:21:05] Connection to server is erroring. Shutting down server.
start_julia.sh: line 2: module: command not found
start_julia.sh: line 5: julia: command not found
What should I do ?
Edit: this seems to be highly related to Remote development using VSCode tip - #9 by pfitzseb, although I did not found a solution there…