我不能安装模块pybluez。当我写到控制台:python -m pip install pybluez时,我得到错误:
ERROR: Command errored out with exit status 1:
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/
ERROR: Command errored out with exit status 1我怎么才能修复它?
发布于 2020-01-06 13:33:51
此错误发生在模块依赖项中。Pybluez需要Microsoft Visual C++ 14.0才能安装,您可以通过以下软件包安装所有必需的工具:
https://visualstudio.microsoft.com/visual-cpp-build-tools/
安装程序包后,重新启动系统。
此外,您还可以安装此软件包:
https://www.techspot.com/downloads/6776-visual-c-redistributable-package.html
https://stackoverflow.com/questions/59607060
复制相似问题