2016-05-02 1 views
1

Ich versuche, ein Python-Paket mit pip zu installieren, aber es denkt, dass ich eine andere Mac-Version habe als ich tatsächlich:auf dem Mac läuft in Version Fehler installiert pip

pip install root_numpy 

Collecting root-numpy 
Using cached root_numpy-4.4.1.tar.gz 
Building wheels for collected packages: root-numpy 
Running setup.py bdist_wheel for root-numpy ... error 
Complete output from command /Users/mattzhang/py3_kernel/bin/python3 -u -c "import setuptools, tokenize;__file__='/private/var/folders/38/2_qkncsd1hlgd2871lnmrgw80000gn/T/pip-build-xexox4xy/root-numpy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d /var/folders/38/2_qkncsd1hlgd2871lnmrgw80000gn/T/tmpawn1rjqlpip-wheel- --python-tag cp35: 
running bdist_wheel 
running build 
running build_py 
creating build 
creating build/lib.macosx-10.6-intel-3.5 
creating build/lib.macosx-10.6-intel-3.5/root_numpy 
copying root_numpy/__init__.py -> build/lib.macosx-10.6-intel-3.5/root_numpy 
copying root_numpy/_array.py -> build/lib.macosx-10.6-intel-3.5/root_numpy 

... 

clang: error: invalid deployment target for -stdlib=libc++ (requires OS X 10.7 or later) 

Das hier Problem ist, dass ich benutze Yosemite Version 10.10.5, aber pip denkt, dass ich 10.6 benutze. Was kann ich tun, um dies zu korrigieren?

Antwort

1

Versuchen Sie, das Einrichtungsziel export MACOSX_DEPLOYMENT_TARGET=10.10 zu setzen und dann wieder pip install root_numpy.