(1)执行命令: $ sudo yum install curl-devel expat-devel gettext-devel \ openssl-devel zlib-devel (2)卸载旧版本git: yum remove git (3)下载git: wget https://github. ...
分类:
系统相关 时间:
2019-11-21 17:06:53
阅读次数:
105
创建git用户和组 groupadd -g 11111 git useradd -md /home/git -g 11111 -u 11111 git 安装依赖包 yum install curl-devel expat-devel gettext-devel openssl-devel zlib- ...
分类:
其他好文 时间:
2019-11-19 01:06:53
阅读次数:
68
1、第一步卸载原有的git。 yum remove git 2、安装相关依赖 yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc yum install gcc perl-ExtUtil ...
分类:
系统相关 时间:
2019-09-24 12:21:19
阅读次数:
139
Intent intent = new Intent(Intent.ACTION_SENDTO); String number = et_main_number.getText().toString().trim(); String sms = et_main_sms.getText().toStr... ...
分类:
其他好文 时间:
2019-09-23 22:51:28
阅读次数:
130
GIT 分布式的代码管理系统,区别于svn等中央式代码管理系统。每个开发者的git客户端本地就是一个git 仓库,然后再通过gitlab/github的远程仓库与其他团队成员同步信息。 安装 推荐使用2.7 yum -y install curl-devel expat-devel gettext- ...
分类:
其他好文 时间:
2019-09-11 17:59:59
阅读次数:
121
#只关心word文档中的文本,不关心样式信息,就可以利用getText()函数import docxdef getText(filename): doc=docx.Document(filename) fullText=[] for para in doc.paragraphs: fullText. ...
分类:
编程语言 时间:
2019-08-23 13:29:13
阅读次数:
116
public class HtmlUtil { // 只有纯文本可以通过 public static String getText(String html) { if (html == null) return null; return Jsoup.clean(html, Whitelist.non ...
分类:
Web程序 时间:
2019-08-19 17:14:08
阅读次数:
179
./configure --prefix=[gd安装目录] --with-jpeg=[jpeg-6b安装目录] --with-png=[libpng安装目录] --with-freetype=[freetype安装目录] --with-gettext=[gettext安装目录] (如./config ...
分类:
系统相关 时间:
2019-08-09 15:10:28
阅读次数:
375
1,在官方网站下载rsync软件包及依赖包。gettext-0.17-6.aix5.3.ppc.rpmlibiconv-1.13.1-2.aix5.3.ppc.rpmpopt-1.16-1.aix5.3.ppc.rpmrsync-3.0.6-1.aix5.3.ppc.rpm2,把这四个软件包拷入AIX系统。3,按顺序安装四个包#rpm-ivhgettext-0.17-8.aix6.1.ppc.rp
分类:
系统相关 时间:
2019-07-30 10:49:19
阅读次数:
237
./configure --with-apxs2=/usr/local/httpd-2.4.33/bin/apxs \--with-curl \--with-freetype-dir=/usr/local/freetype \--with-gd \--with-gettext \--with-ico ...
分类:
Web程序 时间:
2019-06-29 01:21:23
阅读次数:
178