Hi,
I have updated my julia version. I have now tried running quarto using both VScode terminal and separate terminal window. But now I am getting the follow output:
quarto render /Users/abhimanyu/Desktop/codespaces/pmx/brooks-model.qmd --to html
ERROR: Julia server returned error after receiving "run" command:
Failed to run notebook: /Users/abhimanyu/Desktop/codespaces/pmx/brooks-model.qmd
ERROR: ArgumentError: `startpath` must be non-empty
Stacktrace:
[1] evaluate_raw_cells!(f::QuartoNotebookRunner.File, chunks::Vector{Any}, options::Dict{String, Any}; showprogress::Bool, chunk_callback::QuartoNotebookRunner.var"#chunk_callback#67"{TCPSocket})
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:629
[2] evaluate!(f::QuartoNotebookRunner.File, output::Nothing; showprogress::Bool, options::Dict{String, Any}, chunk_callback::Function, markdown::String)
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:152
[3] evaluate!
@ ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:137 [inlined]
[4] (::QuartoNotebookRunner.var"#32#36"{Nothing, String, Bool, Dict{String, Any}, QuartoNotebookRunner.var"#chunk_callback#67"{TCPSocket}, Server})(file::QuartoNotebookRunner.File)
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:1113
[5] (::QuartoNotebookRunner.var"#42#45"{Bool, QuartoNotebookRunner.var"#32#36"{Nothing, String, Bool, Dict{String, Any}, QuartoNotebookRunner.var"#chunk_callback#67"{TCPSocket}, Server}, Server, String})()
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:1185
[6] lock(f::QuartoNotebookRunner.var"#42#45"{Bool, QuartoNotebookRunner.var"#32#36"{Nothing, String, Bool, Dict{String, Any}, QuartoNotebookRunner.var"#chunk_callback#67"{TCPSocket}, Server}, Server, String}, l::ReentrantLock)
@ Base ./lock.jl:229
[7] borrow_file!(f::QuartoNotebookRunner.var"#32#36"{Nothing, String, Bool, Dict{String, Any}, QuartoNotebookRunner.var"#chunk_callback#67"{TCPSocket}, Server}, server::Server, path::String; optionally_create::Bool, options::Dict{String, Any})
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:1178
[8] borrow_file!
@ ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:1139 [inlined]
[9] #run!#31
@ ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/server.jl:1108 [inlined]
[10] _handle_response(socket::TCPSocket, notebooks::Server, request::@NamedTuple{type::String, content::Union{Dict{String, Any}, String}}, showprogress::Bool)
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/socket.jl:273
[11] (::QuartoNotebookRunner.var"#59#66"{Bool, Base.RefValue{Bool}, Server, Base.UUID})()
@ QuartoNotebookRunner ~/.julia/packages/QuartoNotebookRunner/eYIiC/src/socket.jl:201
ERROR: Internal julia server error
Stack trace:
at writeJuliaCommand (file:///Applications/quarto/bin/quarto.js:41406:19)
at eventLoopTick (ext:core/01_core.js:175:7)
at async executeJulia (file:///Applications/quarto/bin/quarto.js:41300:22)
at async Object.execute (file:///Applications/quarto/bin/quarto.js:41037:20)
at async renderExecute (file:///Applications/quarto/bin/quarto.js:85757:27)
at async renderFileInternal (file:///Applications/quarto/bin/quarto.js:85925:43)
at async renderFiles (file:///Applications/quarto/bin/quarto.js:85793:17)
at async render (file:///Applications/quarto/bin/quarto.js:90695:21)
at async Command.actionHandler (file:///Applications/quarto/bin/quarto.js:90843:32)
at async Command.execute (file:///Applications/quarto/bin/quarto.js:8111:13)
These are the settings.json file:
{
"julia.executablePath": "/Applications/Pumas-2.6.0.app/Contents/Resources/julia/bin/julia",
"terminal.integrated.commandsToSkipShell": [
"language-julia.interrupt"
],
"julia.additionalArgs": ["-J/Applications/Pumas-2.6.0.app/Contents/Resources/julia/lib/julia/sys.pumas.dylib"],
"julia.environmentPath": "~/.julia/environments/Pumas_v2.6/",
"julia.symbolCacheDownload": true,
"julia.enableTelemetry": false,
"terminal.integrated.env.osx": {
"QUARTO_JULIA": "/Applications/Pumas-2.6.0.app/Contents/Resources/julia/bin/julia",
"QUARTONOTEBOOKRUNNER_EXEFLAGS": "[\"-J/Applications/Pumas-2.6.0.app/Contents/Resources/julia/lib/julia/sys.pumas.dylib\"]"
}
}