需要帮助使用“yum”安装“开发工具”

需要帮助使用“yum”安装“开发工具”

我目前使用 Ubuntu 14.04 LTS 主要用于神经成像。我需要安装一个程序(参见:http://dti-tk.sourceforge.net/pmwiki/pmwiki.php?n=SourceCode.SourceCode) 要求我从 CentOS 安装“开发工具”。我被引导到:https://support.eapps.com/index.php?/Knowledgebase/Article/View/438/55/user-guide---installing-the-centos-development-tools-gcc-flex-etc#installing-the-development-tools-using-yum我按照页面上的说明进行操作。

然而,我发现当我输入

$ yum groupinstall "development tools"
There are no enabled repos.
Run "yum repolist all" to see the repos you have.
You can enable repos with yum-config-manager --enable <repo>

repolist: 0当我运行 时,我得到了yum repolist all。当我尝试使用该yum-config-manager命令启用 repos 时,我得到了You must be root to change the yum configuration.

我现在不知道该怎么办?如能得到任何帮助我将不胜感激。

答案1

您不需要下载 CentOS 开发工具或yum。如果您查看指南,您将需要cvsccmake

要下载这些内容,请使用apt-get。见下文:

sudo apt-get update && sudo apt-get install cvs cmake-curses-gui

我通过在存储库缓存中搜索找到了cvs和应用程序:ccmake

  1. sudo apt-get update获取存储库中应用程序的最新版本。如果您已经使用我上面提供的命令安装了应用程序,则无需执行此操作。

  2. apt-cache search <package name>搜索您的存储库列表中的存储库中可用的特定应用程序。

man apt-cache通过和查看更多man apt-get

相关内容