61

我正在使用 Windows 10。我想在 MINGW64 中运行“make build”,但出现以下错误:

$ make build
bash: make: command not found

我想为 Golang 构建 Glide

我试过以下:

$ sudo yum install build-essential
bash: sudo: command not found

也:

$ yum install build-essential
bash: yum: command not found

和:

$ apt-cyg build-essential
bash: apt-cyg: command not found

我怎样才能“解决”这个问题?

4

6 回答 6

58
  • 转到 ezwinports,https: //sourceforge.net/projects/ezwinports/files/

  • 下载make-4.2.1-without-guile-w32-bin.zip(获取不带guile的版本)

  • 提取拉链
  • 将内容复制到 C:\ProgramFiles\Git\mingw64\ 合并文件夹,但不要覆盖/替换任何现有文件。
于 2017-05-04T09:52:54.647 回答
48

您也可以使用巧克力。

安装后,只需运行:

choco install make

完成后,它会在 Git for Bash / MinGW 中安装并可用。

于 2019-12-10T13:38:02.480 回答
24

您必须安装 mingw-get,然后您可以运行mingw-get install msys-make以使命令可用。

这是您想要的链接http://www.mingw.org/wiki/getting_started

于 2016-04-21T13:30:45.353 回答
0

尝试使用 cmake 本身。在构建目录中,运行:

cmake --build 。

于 2019-04-09T07:57:08.320 回答
0
  • Go to downloads of jmeubank.github.io/tdm/gcc : https://jmeubank.github.io/tdm-gcc/download/
  • Download 64+32-bit MinGW-w64 edition.
  • Run the .exe file.
  • Click on Remove if you have tdm-gcc already.
  • Then Click on Create to install tdm-gcc.
  • Complete the installation.
  • Add path to environment variable if not added automatically.
  • Now run mingw32-make on your terminal / command prompt.

Hope this works

于 2021-05-20T07:32:46.103 回答
-3

你必须先安装make。运行以下任何命令,它将起作用。

pip install make

或者

conda install make
于 2021-04-07T08:05:35.670 回答