上一页 1 ··· 3 4 5 6 7
摘要: CentOS7.5升级gcc到8.3.0版本 1、下载源码包,并解压。gcc官网:https://gcc.gnu.org/ cd /usr/local/src wget http://ftp.tsukuba.wide.ad.jp/software/gcc/releases/gcc-8.3.0/gcc 阅读全文
posted @ 2019-06-25 14:26 难止汗 阅读(21900) 评论(0) 推荐(0)
摘要: 1、安装依赖包和需要用到的工具 yum -y install wget openssl openssl-devel 这里如果不升级openssl,安装后pip安装模块可能会出错。点我查看pip安装模块报错解决办法。 2、下载python3.6.8的安装包 cd /usr/local/srcwget 阅读全文
posted @ 2019-06-11 13:41 难止汗 阅读(4318) 评论(0) 推荐(0)
摘要: 1、挂载光驱 mkdir -p /mnt/cdrom mount /dev/cdrom /mnt/cdrom 2、配置yum本地源 新建一个yum的配置文件,名字自己随便取,只要是.repo结尾的文件就行。 vim /etc/yum.repos.d/local.repo #配置以下内容 [local 阅读全文
posted @ 2019-06-11 11:21 难止汗 阅读(9045) 评论(1) 推荐(2)
摘要: 1、安装部署redis需要用到的工具 具体情况来安装,可能还有有其他的工具和依赖包需要安装。 yum -y install wget vim gcc 2、下载redis安装包 这里拿5.0.5版本举例。 wget http://download.redis.io/releases/redis-5.0 阅读全文
posted @ 2019-06-05 17:12 难止汗 阅读(179) 评论(0) 推荐(1)
上一页 1 ··· 3 4 5 6 7