导入错误:C扩展(熊猫;python;ubuntu)

导入错误:C扩展(熊猫;python;ubuntu),python,ubuntu,pandas,importerror,Python,Ubuntu,Pandas,Importerror,我是Linux新手,不知道如何修复此错误 $ python googledrive/scripts/test.py Traceback (most recent call last): File "/home/michael/anaconda3/lib/python3.5/site-packages/pandas/compat/__init__.py", line 46, in <module> import __builtin__ as builtins

我是Linux新手,不知道如何修复此错误

$ python googledrive/scripts/test.py
  Traceback (most recent call last):
    File "/home/michael/anaconda3/lib/python3.5/site-packages/pandas/compat/__init__.py", line 46, in <module>
      import __builtin__ as builtins
  ImportError: No module named '__builtin__'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/michael/anaconda3/lib/python3.5/site-packages/pandas/__init__.py", line 7, in <module>
      from pandas import hashtable, tslib, lib
    File "pandas/tslib.pyx", line 53, in init pandas.tslib (pandas/tslib.c:102872)
    File "/home/michael/anaconda3/lib/python3.5/site-packages/pandas/compat/__init__.py", line 59, in <module>
      import http.client as httplib
    File "/home/michael/anaconda3/lib/python3.5/http/client.py", line 71, in <module>
      import email.parser
    File "/home/michael/googledrive/scripts/email.py", line 4, in <module>
      import pandas.io.data as web
    File "/home/michael/anaconda3/lib/python3.5/site-packages/pandas/io/data.py", line 15, in <module>
      from pandas.compat import(
  ImportError: cannot import name 'bytes_to_str'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "googledrive/scripts/test.py", line 11, in <module>
      main()
    File "googledrive/scripts/test.py", line 2, in main
      import pandas as pd
    File "/home/michael/anaconda3/lib/python3.5/site-packages/pandas/__init__.py", line 13, in <module>
      "extensions first.".format(module))
  ImportError: C extension: 'bytes_to_str' not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --inplace' to build the C extensions first.
我不知道应该运行以下建议的目录

python setup.py build_ext --inplace
在终端中逐行运行代码没有任何问题,但只有在尝试运行脚本文件时才有问题

>>> print(all_data['fb'])
                  Open        High         Low       Close    Volume  \
Date                                                                   
2015-01-02   78.580002   78.930000   77.699997   78.449997  18177500   
2015-01-05   77.980003   79.250000   76.860001   77.190002  26452200   
2015-01-06   77.230003   77.589996   75.360001   76.150002  27399300   

任何帮助都将不胜感激。

请尝试在
/home/michael/anaconda3/lib/python3.5/site packages/pandas/
~/anaconda3/lib/python3.5/site packages/pandas$python setup.py build ext中运行
没有这样的文件或目录我知道问题所在。我创建了一个名为email.py的python脚本,它取代了python模块email。
>>> print(all_data['fb'])
                  Open        High         Low       Close    Volume  \
Date                                                                   
2015-01-02   78.580002   78.930000   77.699997   78.449997  18177500   
2015-01-05   77.980003   79.250000   76.860001   77.190002  26452200   
2015-01-06   77.230003   77.589996   75.360001   76.150002  27399300