當前嘗試在我的2.7.3環境中使用pip安裝Chaco。當我運行PIP安裝查科失敗與此錯誤:pip安裝啓用失敗
error: Command "llvm-gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -I/Developer/Headers/FlatCarbon -I/Users/streetmapp/pythonDev/edx/lib/python2.7/site-packages/numpy/core/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c build/src.macosx-10.6-intel-2.7/kiva/quartz/ATSFont.c -o build/temp.macosx-10.6-intel-2.7/build/src.macosx-10.6-intel-2.7/kiva/quartz/ATSFont.o" failed with exit status 1
通過常規輸出去,我來到了這一點:
C compiler: llvm-gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3
compile options: '-I/Developer/Headers/FlatCarbon - I/Users/streetmapp/pythonDev/edx/lib/python2.7/site-packages/numpy/core/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c'
llvm-gcc-4.2: build/src.macosx-10.6-intel-2.7/kiva/quartz/ATSFont.c
build/src.macosx-10.6-intel-2.7/kiva/quartz/ATSFont.c:252:21: error: ATSFont.h: No such file or directory
我注意到,這是對於未能啓用包,這是Chaco的先決條件,並且運行pip install enable的功能相同。
在OS X山獅跑目前用的virtualenv中的蟒蛇2.7.3。
任何幫助,將不勝感激。
刪除您可能必須先安裝numpy的。 chaco取決於numpy。 – Pramod
我已經安裝了下列軟件包已成功: NumPy的 SciPy的 IPython的 matplotlib 性狀 – Tyler
架構標誌不似乎是正確的。它說i386和64位。你確定你的Mac是64位可支持的,因爲i386不是64位。 '''-arch i386 -arch x86_64'''儘量只使用一個-arch標誌。 – pbu