Created
April 3, 2013 19:07
-
-
Save danielballan/5304277 to your computer and use it in GitHub Desktop.
Error on import
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/home/dallan/pandas-danielballan/pandas/__init__.py in <module>() | |
23 | |
24 # let init-time option registration happen | |
---> 25 import pandas.core.config_init | |
26 | |
27 from pandas.core.api import * | |
/home/dallan/pandas-danielballan/pandas/core/config_init.py in <module>() | |
2 from pandas.core.config import (is_int, is_bool, is_text, is_float, | |
3 is_instance_factory,is_one_of_factory) | |
----> 4 from pandas.core.format import detect_console_encoding | |
5 | |
6 """ | |
/home/dallan/pandas-danielballan/pandas/core/format.py in <module>() | |
9 from io import StringIO | |
10 | |
---> 11 from pandas.core.common import adjoin, isnull, notnull | |
12 from pandas.core.index import Index, MultiIndex, _ensure_index | |
13 from pandas.util import py3compat | |
/home/dallan/pandas-danielballan/pandas/core/common.py in <module>() | |
313 | |
314 _take_1d_dict = { | |
--> 315 ('int8', 'int8'): algos.take_1d_int8_int8, | |
316 ('int8', 'int32'): algos.take_1d_int8_int32, | |
317 ('int8', 'int64'): algos.take_1d_int8_int64, | |
AttributeError: 'module' object has no attribute 'take_1d_int8_int8' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment