---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in try_read(path, encoding)
51 with open(path, 'rb') as fh:
---> 52 return pkl.load(fh)
53 except Exception:
ImportError: No module named 'datamanager'
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last)
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in try_read(path, encoding)
56 with open(path, 'rb') as fh:
---> 57 return pc.load(fh, encoding=encoding, compat=False)
58
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/compat/pickle_compat.py in load(fh, encoding, compat, is_verbose)
116
--> 117 return up.load()
118 except:
/usr/lib/python3.5/pickle.py in load(self)
1038 assert isinstance(key, bytes_types)
-> 1039 dispatch[key[0]](self)
1040 except _Stop as stopinst:
/usr/lib/python3.5/pickle.py in load_global(self)
1333 name = self.readline()[:-1].decode("utf-8")
-> 1334 klass = self.find_class(module, name)
1335 self.append(klass)
/usr/lib/python3.5/pickle.py in find_class(self, module, name)
1383 module = _compat_pickle.IMPORT_MAPPING[module]
-> 1384 __import__(module, level=0)
1385 if self.proto >= 4:
ImportError: No module named 'datamanager'
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last)
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in read_pickle(path)
64 try:
---> 65 return try_read(path)
66 except:
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in try_read(path, encoding)
61 with open(path, 'rb') as fh:
---> 62 return pc.load(fh, encoding=encoding, compat=True)
63
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/compat/pickle_compat.py in load(fh, encoding, compat, is_verbose)
116
--> 117 return up.load()
118 except:
/usr/lib/python3.5/pickle.py in load(self)
1038 assert isinstance(key, bytes_types)
-> 1039 dispatch[key[0]](self)
1040 except _Stop as stopinst:
/usr/lib/python3.5/pickle.py in load_global(self)
1333 name = self.readline()[:-1].decode("utf-8")
-> 1334 klass = self.find_class(module, name)
1335 self.append(klass)
/usr/lib/python3.5/pickle.py in find_class(self, module, name)
1383 module = _compat_pickle.IMPORT_MAPPING[module]
-> 1384 __import__(module, level=0)
1385 if self.proto >= 4:
ImportError: No module named 'datamanager'
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last)
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in try_read(path, encoding)
51 with open(path, 'rb') as fh:
---> 52 return pkl.load(fh)
53 except Exception:
ImportError: No module named 'datamanager'
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last)
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in try_read(path, encoding)
56 with open(path, 'rb') as fh:
---> 57 return pc.load(fh, encoding=encoding, compat=False)
58
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/compat/pickle_compat.py in load(fh, encoding, compat, is_verbose)
116
--> 117 return up.load()
118 except:
/usr/lib/python3.5/pickle.py in load(self)
1038 assert isinstance(key, bytes_types)
-> 1039 dispatch[key[0]](self)
1040 except _Stop as stopinst:
/usr/lib/python3.5/pickle.py in load_global(self)
1333 name = self.readline()[:-1].decode("utf-8")
-> 1334 klass = self.find_class(module, name)
1335 self.append(klass)
/usr/lib/python3.5/pickle.py in find_class(self, module, name)
1383 module = _compat_pickle.IMPORT_MAPPING[module]
-> 1384 __import__(module, level=0)
1385 if self.proto >= 4:
ImportError: No module named 'datamanager'
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last)
<ipython-input-12-4e877b3a6515> in <module>()
----> 1 dm = pd.read_pickle("data/blogcatalog.data")
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in read_pickle(path)
66 except:
67 if PY3:
---> 68 return try_read(path, encoding='latin1')
69 raise
70
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/io/pickle.py in try_read(path, encoding)
60 except:
61 with open(path, 'rb') as fh:
---> 62 return pc.load(fh, encoding=encoding, compat=True)
63
64 try:
/home/nukui-s/env/keras/lib/python3.5/site-packages/pandas/compat/pickle_compat.py in load(fh, encoding, compat, is_verbose)
115 up.is_verbose = is_verbose
116
--> 117 return up.load()
118 except:
119 raise
/usr/lib/python3.5/pickle.py in load(self)
1037 raise EOFError
1038 assert isinstance(key, bytes_types)
-> 1039 dispatch[key[0]](self)
1040 except _Stop as stopinst:
1041 return stopinst.value
/usr/lib/python3.5/pickle.py in load_global(self)
1332 module = self.readline()[:-1].decode("utf-8")
1333 name = self.readline()[:-1].decode("utf-8")
-> 1334 klass = self.find_class(module, name)
1335 self.append(klass)
1336 dispatch[GLOBAL[0]] = load_global
/usr/lib/python3.5/pickle.py in find_class(self, module, name)
1382 elif module in _compat_pickle.IMPORT_MAPPING:
1383 module = _compat_pickle.IMPORT_MAPPING[module]
-> 1384 __import__(module, level=0)
1385 if self.proto >= 4:
1386 return _getattribute(sys.modules[module], name)[0]
ImportError: No module named 'datamanager'