ModuleNotFoundError: No module named 'cPickle'
时间: 2023-10-26 17:45:05 浏览: 80
python中cPickle类使用方法详解
The module cPickle has been renamed to _pickle in Python 3.x. You can try changing the import statement from 'import cPickle' to 'import _pickle as cPickle' to resolve the error.
阅读全文