友情提示:
centos7 yum安装python3无法使用yum解决办法
昨天帮朋友在阿里云上安装python3,原本以为很简单的事情,居然让我搞了半天.
系统:centos 7(64位)
软件环境:python3
1.安装yum源
yum -y install epel-release
2.安装python3
yum -y install python34 python34-pip
替换python2.7
rm -f /usr/bin/python
ln -sf /usr/bin/python3 /usr/bin/python
3.修改yum
vim /usr/bin/yum
将顶部的
#!/usr/bin/python
修改为:
#!/usr/bin/python2.7
原本以为改了这里就可以...
解决git clone 报错 fatal: unable to access '......': SSL connect error
今天在服务器拉代码的时候,居然遇到fatal: unable to access 'https://******@github.com/******/******.git/': SSL connect error的错误,刚开始我还以为是git版本低了,把git的版本给升级到2.14了,居然还有这样的问题,下面是解决办法:
1.升级nss版本
yum update nss -y
2.将https改为git
git clone git://******@github.com/******/******.git
如果以上两种解决方法都无法解决你的问题,那么请再执行:
yum update -y nss cu...