Python下载文件时出现错误:EOFError: Compressed file ended before the end-of-stream marker was reached

python在下载文件时,出现上述错误提示,一般都是因为所下载文件已经存在或下载了部分,若是重新下载,这会出现上述错误。例如博主学习 keras 时运行下面的代码就出现了这个问题,因为下载过程中手贱终止了程序的运行。

(x_train, y_train), (x_test, y_test) = cifar10.load_data()

解决方法很简单,找到下载下来的文件,把它们删掉就好。一般可以在C:\Users\Administrator中找到对应的文件,比如博主要删的文件地址就是C:\Users\Administrator.keras\datasets,把里面刚刚下载的文件删掉,在运行程序就没问题了。

你可能感兴趣的:(Python下载文件时出现错误:EOFError: Compressed file ended before the end-of-stream marker was reached)