Git Bash:需要 Microsoft Visual C++ 14.0,但我已经安装了它
Posted
技术标签:
【中文标题】Git Bash:需要 Microsoft Visual C++ 14.0,但我已经安装了它【英文标题】:Git Bash: Microsoft Visual C++ 14.0 is required, but I already have it installed 【发布时间】:2020-05-13 12:49:12 【问题描述】:我正在使用 git 在 Windows 10 上克隆 https://github.com/rkern/line_profiler.git。它出现此错误但我已安装此错误(见下图):
错误:需要 Microsoft Visual C++ 14.0。使用“Microsoft Visual C++ Build Tools”获取它:https://visualstudio.microsoft.com/downloads/
这是我正在使用的命令:
git clone https://github.com/rkern/line_profiler.git
find line_profiler -name '*.pyx' -exec cython \;
cd line_profiler
pip install . --user
【问题讨论】:
【参考方案1】:构建工具,新链接在这里:https://aka.ms/vs/17/release/vs_BuildTools.exe
【讨论】:
【参考方案2】:你没有任何 Visual C++,你只有 Redistributable 包。他们安装用于运行用 VC 编写的应用程序的运行时库。但是你需要 Visual C++ 编译器!安装Build Tools。
见https://***.com/search?q=%5Bpip%5D+Microsoft+Visual+C%2B%2B+14.0+is+required
【讨论】:
缺少构建工具。谢谢!以上是关于Git Bash:需要 Microsoft Visual C++ 14.0,但我已经安装了它的主要内容,如果未能解决你的问题,请参考以下文章