我在尝试 'pip install StyleFrame' 时遇到此错误,知道此错误是关于什么的吗?

I encounter this error when I try 'pip install StyleFrame', any idea what this error is about?

我在尝试 '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. 可能需要安装 xcrun:xcode-select --install
  2. 如果您使用的是 python 3.7,styleframe 目前不兼容。我为他们做了一个github issue。在解决这个问题之前,如果您可以降级到 python 3.6,它应该可以工作。

我的故障排除步骤的答案更长:

某些 python 软件包需要 xcrun 才能在某些操作系统上安装(例如 OSX 在 mac 上)。这是我在复制您的问题时得到的(相当冗长的)错误输出的一部分:

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

我运行安装xcrun:

xcode-select --install

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

_configtest.c:1:10: fatal error: 'endian.h' file not found

这让我想到了这个: endian.h not found on mac osx

但它仍然失败并出现同样的错误。

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