2017-06-16 4 views
1

pytestを次のエラーで実行している人と同じ問題があります。私は環境をインストールする方法は、設定した仮想のenvを使用しているhttps://www.python.org/downloads/から ダウンロードのpythonであるとreq.fileを作成PKGファイル をインストールし、私は試してみました何pytest 3.0.7インポート時のエラーpandas 2.20.1

os: x el capitan 
python:3.6.1 
pytest:3.0.7 
pandas:2.20.2 

req.file 
psutil==4.0.0 
pandas==0.20.2 
numpy==1.10.4 
py==1.4.31 
pytest==3.0.7 
pytest-cov==2.2.1 
pytest-mock==0.10.1 

script.py 
import pandas as pd 


/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/pandas/__init__.py:31: in <module> 
    "extensions first.".format(module)) 
E ImportError: C extension: umpy.core.multiarray failed to import 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. 
-------------------------------------------------------------------------------- Captured stderr --------------------------------------------------------------------------------- 
RuntimeError: module compiled against API version 0xb but this version of numpy is 0xa 

答えて

0

req.file -rインストールピップしてパッケージをインストールしますすべてのパッケージを再インストールしてプロジェクト環境が私の​​ローカルに隔離されていることを確認してください。仮想環境をセットアップしてから、もう何も問題なくパンダをインストールしてください。

$pip3 install virtualenv 
$virtualenv --python=/usr/bin/python3.6 <path/to/new/project/> 
関連する問題