在 Mint 17.2 上安装 g++ 4.9
Install g++ 4.9 on Mint 17.2
我正在尝试安装 g++ 4.9 或更高版本以便在 Android 上构建 mapbox。说明说明我需要 g++ 4.9 或更高版本。我找到了以下说明,但它们不起作用。
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
最后一条命令说:
~ $ sudo apt-get install g++-4.9
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package g++-4.9 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'g++-4.9' has no installation candidate
我也尝试从 Synaptic Package Manager 获取以下信息:
g++:
Depends: cpp (>=4:4.9-1ubuntu7) but 4:4.8.2-1ubuntu6 is to be installed
Depends: gcc (>=4:4.9-1ubuntu7) but 4:4.8.2-1ubuntu6 is to be installed
Depends: g++-4.9 (>=4.9) but it is not installable
Depends: gcc-4.9 (>=4.9) but it is not installable
如何在我的计算机上安装 g++ 4.9?
谢谢。
以下是如何在 Linux Mint 17.2 Rafaela
上安装 g++-4.9
转到菜单 -> 管理 -> 软件源
单击其他存储库,然后单击Getdeb
单击“编辑”URL...
替换 deb http://archive.getdeb.net/ubuntu trusty-getdeb 应用程序
来自
deb http://archive.getdeb.net/ubuntu wily-getdeb 应用程序
然后单击 更新缓存
此时你可以使用
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
您可以像这样调用您的 g++:
g++-4.9
现在你已经安装了 g++ 4.9.3
作为补充,您可以获得最新的 g++-5 (g++ 5.2.1) 编译器
sudo apt-get install g++-5
我正在尝试安装 g++ 4.9 或更高版本以便在 Android 上构建 mapbox。说明说明我需要 g++ 4.9 或更高版本。我找到了以下说明,但它们不起作用。
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
最后一条命令说:
~ $ sudo apt-get install g++-4.9
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package g++-4.9 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'g++-4.9' has no installation candidate
我也尝试从 Synaptic Package Manager 获取以下信息:
g++:
Depends: cpp (>=4:4.9-1ubuntu7) but 4:4.8.2-1ubuntu6 is to be installed
Depends: gcc (>=4:4.9-1ubuntu7) but 4:4.8.2-1ubuntu6 is to be installed
Depends: g++-4.9 (>=4.9) but it is not installable
Depends: gcc-4.9 (>=4.9) but it is not installable
如何在我的计算机上安装 g++ 4.9?
谢谢。
以下是如何在 Linux Mint 17.2 Rafaela
上安装 g++-4.9转到菜单 -> 管理 -> 软件源
单击其他存储库,然后单击Getdeb
单击“编辑”URL...
替换 deb http://archive.getdeb.net/ubuntu trusty-getdeb 应用程序
来自
deb http://archive.getdeb.net/ubuntu wily-getdeb 应用程序
然后单击 更新缓存
此时你可以使用
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install g++-4.9
您可以像这样调用您的 g++:
g++-4.9
现在你已经安装了 g++ 4.9.3
作为补充,您可以获得最新的 g++-5 (g++ 5.2.1) 编译器
sudo apt-get install g++-5