Git Bash:需要Microsoft Visual C ++ 14.0,但我已经安装了它

时间:2020-01-28 06:15:53

标签: windows git visual-c++ line-profiler

我正在使用git克隆Windows 10上的https://github.com/rkern/line_profiler.git。由于该错误而出现错误,但是我已经安装了它(请参见下图):

错误:需要Microsoft Visual C ++ 14.0。使用“ Microsoft Visual C ++生成工具”获取它:https://visualstudio.microsoft.com/downloads/

这是我正在使用的命令:

# Generate data.
set.seed(0934)
Data.All.df.2008 <- data.frame(FSA = sample(c("N8N", "N8R", "B3L", "P1H"), 50, T),
                               Lyme = sample(0:1, 50, T),
                               stringsAsFactors = F)

# First 10 observations.
head(Data.All.df.2008)

#   FSA Lyme
# 1 N8N    1
# 2 P1H    1
# 3 N8N    0
# 4 P1H    0
# 5 N8N    1
# 6 N8N    1

enter image description here

1 个答案:

答案 0 :(得分:2)

您没有任何Visual C ++,只有可再发行软件包。它们安装用于运行用VC编写的应用程序的运行时库。但是您需要Visual C ++编译器!安装Build Tools

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