我正在使用 python 3.6 运行 virtualenv 并尝试加载测试 django 应用程序。在它之前成功安装所有依赖项后,我收到以下错误。Installing collected packages: greenlet, gevent, locustio Running setup.py install for greenlet ... error Complete output from command /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/private/var/folders/3t/_nx5hykn0hsfs5v1x_svhdym0000gn/T/pip-install-lrm7ibd5/greenlet/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /private/var/folders/3t/_nx5hykn0hsfs5v1x_svhdym0000gn/T/pip-record-77exz0iu/install-record.txt --single-version-externally-managed --compile: running install running build running build_ext building 'greenlet' extension creating build creating build/temp.macosx-10.6-intel-3.6 gcc -fno-strict-aliasing -Wsign-compare -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -arch i386 -arch x86_64 -g -I/Library/Frameworks/Python.framework/Versions/3.6/include/python3.6m -c greenlet.c -o build/temp.macosx-10.6-intel-3.6/greenlet.o xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun error: command 'gcc' failed with exit status 1
1 回答
守着星空守着你
TA贡献1799条经验 获得超8个赞
在终端中运行xcode-select --install
这将安装 xcode 命令行工具(不是 xcode 本身),您将被要求输入密码并同意许可。
发生这种情况是因为一个(或多个)包包含需要编译的 C 扩展,并且需要编译 xcode 命令行工具。
一个单独的解决方案是安装 Anaconda python, miniconda 如果你不需要科学 python 的包,这个 python 发行版包括一个包管理器 (conda),它的工作方式很像 pip 但具有预编译包的优势
添加回答
举报
0/150
提交
取消