修复安装时的 HDF5 依赖错误

问题描述 投票:0回答:1

我正在尝试在 Windows 上使用 Julia 1.9.3 中的

HDF5
包。

我已将包添加为:

] add HDF5

打印出:

0 dependencies successfully precompiled in 0 seconds. 21 already precompiled.                                           1 dependency errored. To see a full report either run ``import Pkg; Pkg.precompile()`` or load the package

我运行了命令

import Pkg; Pkg.precompile()
,它没有给我错误。

但是,每次我重新加载脚本并执行以下操作:

Pkg.instantiate()
我得到了与开始时相同的错误:
1 dependency errored. To see a full report either run 
import Pkg; pkg.precompile()
 or load the package

如何查看哪个依赖项给出了错误?

julia hdf5
1个回答
0
投票

当您在 repl 中执行

using HDF5
时,它应该会给出更详细的错误。

© www.soinside.com 2019 - 2024. All rights reserved.