问题 I'm using Python 2.7 and NumPy 1.11.2, as well as the latest versions of dill ( I just did the pip install dill ) , on Ubuntu 16.04. When storing a NumPy array using pickle, I find that pickle is very slow, and stores arrays at almost three times the 'necessary' size. For example, in the following code, pickle is approximately 50 times slower (1s versus 50s), and creates a file that is 2.2GB instead of 800MB. import numpy import pickle import dill B=numpy.random.rand(10000,10000) with open(