当我尝试“ pip install StyleFrame”时遇到此错误,您知道此错误是关于什么的吗?

时间:2019-01-17 01:56:25

标签: python styleframe

尝试“ pip install StyleFrame”时遇到此错误,知道这个错误是什么吗?

Command "/Users/pengdanni/Desktop/invoice/venv/bin/python 
-m pip install --ignore-installed --no-user --prefix /private/var/folders/g9/1p5yfql51vs118b1r6899rp80000gn/T/pip-build-env-y8qav8ta
--no-warn-script-location --no-binary :none: 
--only-binary :none: -i https://pypi.org/simple -- wheel setuptools Cython "

 numpy==1.9.3; python_version=='3.5'" "numpy==1.12.1; 
 python_version=='3.6'" "numpy==1.13.1; python_version>='3.7'"" 

 failed with error code 1 in None

1 个答案:

答案 0 :(得分:2)

简短回答:

  1. 可能需要安装xcrun:xcode-select --install
  2. 如果您使用的是python 3.7,则styleframe目前不兼容。我为他们制作了github issue。在解决该问题之前,如果您可以降级到python 3.6,它应该可以工作。

有关我的故障排除步骤的详细答案,

某些python软件包需要xcrun才能安装在某些操作系统上(例如Mac上的OSX)。这是复制问题时出现的(相当详细)错误输出的一部分:

  

xcrun:错误:无效的活动开发人员路径(/ Library / Developer / CommandLineTools),缺少xcrun,位于:/ Library / Developer / CommandLineTools / usr / bin / xcrun

我运行它来安装xcrun:

xcode-select --install

这给了我一个更长的新错误,包括:

  

_configtest.c:1:10:致命错误:未找到“ endian.h”文件

这使我想到了这一点: endian.h not found on mac osx

但是它仍然失败,并显示相同的错误。

github问题中的更多详细信息:https://github.com/DeepSpace2/StyleFrame/issues/52