系统相关
首页 > 系统相关> > linux环境下安装、卸载python3

linux环境下安装、卸载python3

作者:互联网

超实用安装python3

1.下载安装包:wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tar.xz

 

2.解压:tar -xvJf Python-3.7.1.tar.xz

3.进入到解压好的文件夹下:cd Python-3.7.1

4.添加配置,执行configure: ./configure

5.开始安装:make && make install

6.查看是否安装成功:./python -V,此时语法只能在当前文件目录下使用。显示出版本号就为成功

7.安装完成之后建立一个软链接方便使用:ln -s ./python /usr/bin/python3

8.完成之后就可以在任意目录下使用 python3 -V 这个命令查看当前版本号。

超实用卸载python3:

1、卸载python3
rpm -qa|grep python3|xargs rpm -ev --allmatches --nodeps 卸载pyhton3


2、whereis python3 |xargs rm -frv 删除所有残余文件
成功卸载!


3、whereis python 查看现有安装的python

 

标签:tar,python,linux,3.7,卸载,安装,python3
来源: https://www.cnblogs.com/yangbeita/p/16054850.html