1

我正在使用 git 在 Windows 10 上克隆https://github.com/rkern/line_profiler.git。出现此错误时出错,但我已安装(见下图):

错误:需要 Microsoft Visual C++ 14.0。使用“Microsoft Visual C++ 构建工具”获取它: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

在此处输入图像描述

4

2 回答 2

2

你没有任何 Visual C++,你只有 Redistributable 包。他们安装用于运行用 VC 编写的应用程序的运行时库。但是你需要 Visual C++ 编译器!安装构建工具

请参阅https://stackoverflow.com/search?q=%5Bpip%5D+Microsoft+Visual+C%2B%2B+14.0+is+required

于 2020-01-28T06:34:32.323 回答
0

构建工具,新链接在这里:https ://aka.ms/vs/17/release/vs_BuildTools.exe

在此处输入图像描述

于 2021-11-21T15:22:28.140 回答