pip yum apt-get安装与卸载

pip yum apt-get安装与卸载

    • pip安装包
    • pip查看安装哪些包
    • pip卸载包
    • yum安装包
    • yum查看安装哪些包
    • apt-get安装包
    • apt查看安装哪些包
    • apt卸载包

pip安装包

pip install xxx

pip查看安装哪些包

pip list

pip yum apt-get安装与卸载_第1张图片

pip卸载包

pip uninstall xxx

yum安装包

yum install xxx
yum -y install xxx

yum查看安装哪些包

yum list installed

pip yum apt-get安装与卸载_第2张图片

apt-get安装包

apt-get install xxx

apt查看安装哪些包

apt list --installed

pip yum apt-get安装与卸载_第3张图片

apt卸载包

#删除软件及其配置文件
apt-get --purge remove xxx
#删除依赖包
apt-get autoremove xxx

你可能感兴趣的:(python)