无法在 Windows 10 上使用 cygwin 安装 gcc

无法在 Windows 10 上使用 cygwin 安装 gcc

在 Windows 10 上安装 cygwin 后,我尝试通过以下方式安装 gcc

cd C:\cygwin
C:\cygwin\setup-x86_64.exe -q -P wget -P gcc-g++ -P make -P diffutils -P libmpfr-devel -P libgmp-devel -P libmpc-devel

正如这里建议的那样如何在 Windows 上安装最新的 GCC

但执行命令后出现此错误:

“该应用无法在您的电脑上运行”

还有其他人遇到过这个问题并知道如何解决吗?

答案1

此应用无法在你的电脑上运行

cd C:\cygwin
cd C:\cygwin\setup-x86_64.exe -q -P wget -P gcc-g++ -P make -P diffutils -P libmpfr-devel -P libgmp-devel -P libmpc-devel

上述命令毫无意义。它不应该以 开始,cd因为您已经在正确的目录中。

尝试以下命令(此处有效):

cd C:\cygwin
setup-x86_64.exe -q -P wget -P gcc-g++ -P make -P diffutils -P libmpfr-devel -P libgmp-devel -P libmpc-devel

笔记:

  • 假设您拥有 64 位版本的 Windows。

  • 如果您有 32 位版本的 Windows,则需要下载 32 位版本的 Cygwin,它具有不同的安装程序。

Cygwin DLL 的最新版本是 2.5.0。运行以下命令安装它:安装-x86.exe(32 位安装)或安装-x86_64.exe(64 位安装)。

来源这是 Cygwin 项目的主页

相关内容