通过pip安装Python第三方包:
pip install 包名称
通过pip卸载Python第三方包:
pip uninstall 包名称
通过pip安装Python第三方包的固定版本:
pip install 包名称==版本号
--------------------------------------------
通过智能实验室安装固定版本的第三方包:
pip install --user 包名称==版本号
来源:oschina
链接:https://my.oschina.net/u/3183716/blog/4296340