首页 > 解决方案 > 如何在 mac 终端上正确下载 Python 模块(xlwings)?

问题描述

我一直在尝试从终端安装 xlwings 模块(在 python 3.7 上)并遇到一些错误。在最后一次尝试中,当我输入 pip3 install xlwings 时,我收到以下错误。

gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch x86_64 -g -DPSUTIL_POSIX=1 -DPSUTIL_VERSION=550 -DPSUTIL_OSX=1 -I/Library/Frameworks/Python.framework/Versions/3.7/include/python3.7m -c psutil/_psutil_common.c -o build/temp.macosx-10.9-x86_64-3.7/psutil/_psutil_common.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

命令“/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7 -u -c”导入setuptools,tokenize;file ='/private/var/folders/b_/kf3zc0xx3f51rbjcj5gcd9lh0000gn/T/pip-install-qo2pickz/psutil/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/b_ /kf3zc0xx3f51rbjcj5gcd9lh0000gn/T/pip-record-vpk41akr/install-record.txt --single-version-externally-managed --compile" 失败,错误代码 1 在 /private/var/folders/b_/kf3zc0xx3f51rbjcj5gcd9lh0000gn/T/pip-安装-qo2pickz/psutil/

我对终端一无所知,但愿意学习。你有什么建议吗?提前致谢!

标签: pythonpython-3.7xlwings

解决方案


我相信您需要下载并安装 xcode 开发人员工具(您不需要完整的 xcode 安装)。它应该可以解决问题。有关更多详细信息,请参阅相关问题的此答案。


推荐阅读