这个问题怎么解决??
Welcome to the forum!
It is generally better to copy-paste the output instead of posting images.
The error syntax: unexpected end
means that you have the keyword end
somewhere where you shouldn’t, probably close to line 50 in setup.jl
based on the error message. This can for example happen if you try to use end
as a variable etc:
julia> end = 1
ERROR: syntax: unexpected "end"
1 Like