为什么在使用pickle.loads时出现AttributeError:'Variable'对象没有属性'__dict__'吗?

时间:2019-10-16 14:04:20

标签: python pickle

这是我得到的错误。我的pickle文件的路径存在,并且我的同事能够使用完全相同的代码在他们的计算机上运行此文件。我们俩都在运行python 3.7,并且有macbook。

AttributeError                            Traceback (most recent call last)
<ipython-input-2-d41a2931d19e> in <module>
     1 pickle_file = '/path/to/file/pickle_filename.p'
----> 2 pickle_contents = pickle.load(open(pickle_file,"rb"))
     3 print(pickle_contents)
AttributeError: 'Variable' object has no attribute '__dict__'

0 个答案:

没有答案