标签: python numpy
运行以下代码行
np.savez(os.path.join(data_path,'file.npz'),Arrays)
我得到'RuntimeError file size unexpectedly exceeded zip64 limit'
'RuntimeError file size unexpectedly exceeded zip64 limit
我尝试如下添加force_zip64=True,但出现相同的错误:
force_zip64=True
np.savez(os.path.join(data_path,'file.npz'),force_zip64=True,Arrays)