美文网首页
CentOS6 卸载Python34,安装

CentOS6 卸载Python34,安装

作者: 千羽之城88 | 来源:发表于2019-04-24 16:32 被阅读0次

需要下载instagram一个相册,instaloader不支持python3.4,需要重新安装。

which python3
# /usr/bin/python3.4
whereis python3.4
# 会指向很多文件
whereis python3.4 | sed 's/ /\n/g' |  grep 3.4  | xargs -I '@' rm -rf @
# 列出所有3.4版本的文件,然后传递给rm删除
whereis python2.6 | sed 's/ /\n/g' | grep 2.6 | xargs -I '@' rm -rf @
# 删除python2.6

现在

相关文章

网友评论

      本文标题:CentOS6 卸载Python34,安装

      本文链接:https://www.haomeiwen.com/subject/vdgggqtx.html