python3的pickle保存pkl文件用python2打开出错
ValueError: unsupported pickle protocol: 3出现该问题说明是在python2环境下想打开原本在python3下pickle保存的文件解决这个问题的方式是:在原先python3环境下保存的时候改变pickle.dump()中protocol 参数为2比如:path = './file.pkl'with open(path,'wb') as...