刚刚从GitHub提取了一个存储库,并保存在“下载”下。尝试运行程序并不断出现这些错误:

    julia> using FITSIO

    julia> include("readoifits.jl")
    ERROR: could not open file /home/ellie/Downloads/readoifits.jl
    in include_from_node1(::String) at ./loading.jl:488

    julia> include("setupft.jl")
    ERROR: could not open file /home/ellie/Downloads/setupft.jl
    in include_from_node1(::String) at ./loading.jl:488

    julia> include("oichi2.jl")
    ERROR: could not open file /home/ellie/Downloads/oichi2.jl
    in include_from_node1(::String) at ./loading.jl:488

    julia> include("oiplot.jl")
    ERROR: could not open file /home/ellie/Downloads/oiplot.jl
    in include_from_node1(::String) at ./loading.jl:488

因此,它知道文件存在以及它的位置,但无法打开它们。有人可以解释一下node1和String位的含义以及如何打开这些文件吗?谢谢。

最佳答案

您当前的目录是什么?您似乎正在下载目录中运行REPL-可能其中有数据但没有代码?您可以使用pwd()函数找到当前目录。 REPL中的include函数打开相对于当前工作目录的文件,当前工作目录是您启动Julia进程时所在的目录。 (当从另一个源文件调用时,include查找相对于该源文件目录的文件。)

关于linux - 无法在Julia中打开文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44187400/

10-13 05:24