在notebook上运行julia,代码报错但是不显示出现错误的具体位置(行),这个应当如何设置才能定位错误

如题,最近在运行julia在notebook上发现debug困难,希望得到帮助

发个图看看?我用jupytet的时候没问题啊


就像是这样的程序,我中间有小错误,但是没有提示错误在哪一行

我没有遇到过这种情况,建议试试 jupyter lab 或者其他的 ide

你矩阵表达式写错了,这种解析错误不会出现行号,比如:

println(1)
[1 2 3,
 4 5 6]
println(2)

报错:

syntax: unexpected comma in matrix expression

这里应改成

println(1)
[1 2 3;
 4 5 6]
println(2)