本文主要是介绍CentOS 7 安装subversion-1.8.11,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
centos 7 全新系统 共缺少三个包apr 和apr-util :zlib
apr 和apr-util :
https://dist.apache.org/repos/dist/release/apr/
zlib : http://www.zlib.net/
先安装上述三个依赖包:
apr:
进入解压包的根
.configure
make && make install
apr-util:
进入解压包的根
.configure --with-apr=/usr/local/apr
make && make install
然后还会报sqlite版本底:
http://www.sqlite.org/download.html
下载最新sqlite-amalgamation
将下载的四个文件放入subversion-1.8.11/sqlite-amalgamation
./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr
看到这句话,表示可以安装了:
config.status: creating Makefile
然后安装:
sudo make && make install
这篇关于CentOS 7 安装subversion-1.8.11的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!