首页 > 技术文章 > linux 使用pip 常用命令

weiwei2021 2020-11-11 08:58 原文

一 摘要

本文主要讲pip 在linux 系统里常用命令。

二 常用命令

2.1 常看目前已安装模块

pip list

[root@ussuricontrollerdev ~]# pip list
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
ansible (2.9.10)
appdirs (1.4.4)
argcomplete (1.9.3)
asn1crypto (0.24.0)

2.2 卸载已安装模块

pip uninstall 模块名

[root@ussuricontrollerdev ~]# pip uninstall kolla

推荐阅读