我无法为许多软件包(例如<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.saurabh</groupId>
<artifactId>spring</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Spring</name>
<description>My first attempt at learning spring from Pluralsight</description>
<!-- the stuff above this was generated automatically while I wrote all that is below -->
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.0.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
)安装最新版本。
this中有8.1版,但是当我运行vim
时,我可以找到的最新版本是yum search vim
。
我了解升级版本时的稳定性和安全性问题,但是已经习惯了滚动发行版(archlinux),我想为自己的开发工具安装最新版本。
我尝试启用更多存储库,例如:elrepol,epel,elrepo-extras,但它们似乎也没有这些软件包的最新版本。
答案 0 :(得分:0)
这就是(红帽)软件集合和开发人员工具集的用途。尽管它们不包括Vim,但有许多开发人员工具(编译器,动态语言,数据库等)比默认存储库要新鲜得多。
默认软件包和软件收集软件包可以相互安装并使用,而不会发生冲突。
退房: