实战打包Numpy
打包示例源码下载:
请看文章末尾
版本信息:
Numpy==1.18.5
Nuitka==0.6.19.1
打包环境:
Windows10 64位
打包代码如下:
import numpy as np
a = np.array([[1, 2], [3, 4]])
print(a)
b = np.load('data.npy')
print(b)
项目目录如下:
运行截图如下:
打包示例源码下载:
请看文章末尾
版本信息:
Numpy==1.18.5
Nuitka==0.6.19.1
打包环境:
Windows10 64位
打包代码如下:
import numpy as np
a = np.array([[1, 2], [3, 4]])
print(a)
b = np.load('data.npy')
print(b)
项目目录如下:
运行截图如下: