PathBench icon indicating copy to clipboard operation
PathBench copied to clipboard

Pickle files aren't opening

Open qitop opened this issue 3 years ago • 1 comments

I am trying to open pickle files. I tried different methods


import pickle
import pandas as pd
from algorithms import *
object = pd.read_pickle(r'E:\PathBench\data\training_data\training_block_map_3.pickle')
print(object)

it keep on giving me an error

  File "C:\Users\AppData\Local\Programs\Python\Python38\lib\pickle.py", line 1577, in find_class
    __import__(module, level=0)
ModuleNotFoundError: No module named 'algorithms.configuration'

Process finished with exit code 1

qitop avatar Dec 19 '21 07:12 qitop

This is likely a file path issue, as it appears you are using windows.

Windows is not supported at the moment, as PB was written for Linux. See issue #74.

h2jaafar avatar Jan 03 '22 01:01 h2jaafar