Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AttributeError: Can't get attribute '_unpickle_block'

While using:

with open("data_file.pickle", "rb") as pfile:
     raw_data = pickle.load(pfile)  

I get the error:

AttributeError: Can't get attribute '_unpickle_block' on <module 'pandas._libs.internals' from '/opt/conda/lib/python3.8/site-packages/pandas/_libs/internals.cpython-38-x86_64-linux-gnu.so'>

Another answer to a similar question suggests checking the version of pickle I am using. It is the same on my machine, where I developed the code and on server, where I am running the code. I have searched everywhere with no answers. Please help.

like image 981
No-Time-To-Day Avatar asked Sep 06 '25 03:09

No-Time-To-Day


1 Answers

I don't think the problem is pickle module but Pandas version. Your file was probably created with an older version of Pandas. Now you use a newer version, pickle can't "deserialize" the object because the API change.

Try to downgrade your Pandas version and reload file. You can also try to use pd.read_pickle.

like image 111
Corralien Avatar answered Sep 07 '25 21:09

Corralien