pip yum apt-get安装与卸载

pip安装包

pip install xxx

pip查看安装哪些包

pip list

在这里插入图片描述

pip卸载包

pip uninstall xxx

yum安装包

yum install xxx
yum -y install xxx

yum查看安装哪些包

yum list installed

在这里插入图片描述

apt-get安装包

apt-get install xxx

apt查看安装哪些包

apt list --installed

在这里插入图片描述

apt卸载包

#删除软件及其配置文件
apt-get --purge remove xxx
#删除依赖包
apt-get autoremove xxx
发布了42 篇原创文章 · 获赞 7 · 访问量 14万+

猜你喜欢

转载自blog.csdn.net/szj_jojoli/article/details/99843957