为什么numpy.save无法在Linux上保存文件

时间:2018-09-27 06:22:41

标签: python linux python-3.x numpy

我正在尝试使用numpy.save在系统中保存一个Numpy数组。该代码在Windows上运行正常,没有错误,但在Linux上,该代码运行正常,但未将numpy数组保存到所需位置。在Windows中工作正常,但在Linux上我看不到文件

在Windows上:

import numpy as np
dataset = np.arange(100)
np.save("C:\\Users\\Bhushan\\Documents\\Test.npy",dataset)
#working fine with file saved at the location

在linux上:

import numpy as np
dataset = np.arange(100)
np.save("Test.npy",dataset)
# It should save next to the program file but i couldn't see any numpy array file

可能是什么问题?

1 个答案:

答案 0 :(得分:1)

如果您尝试

your_button.setImage(image, for: .normal)

您可以查看它是否确实保存了它,并且查找位置错误了

np.load("Test.npy")

查看您的位置(以及文件的保存位置)