pip使用手册

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip使用手册相关的知识,希望对你有一定的参考价值。

pip是python环境的包管理工具,用它可以方便地管理第三方包,其功能类似于Linux系统下的yum或apt-get。

pip的安装步骤请参考Centos下安装python及配置selenium自动化环境

常用命令:

To list all the options that pip can use:

>>> pip --help

Search packages from the PyPi repository:

>>> pip search package

Install PyPi packages:

>>> pip install package                    //by default, pip will install the latest version of packages

Specify the particular version of package you plan to install:

>>> pip install package==1.0.4              //specific version

Check the detailed installed folders and files:

>>> pip show --files package

Check which packages are out of date and need updating:

>>> pip list --outdated

List out all the installed packages:

>>> pip list

Update package:

>>> pip install -U package         or          pip install --upgrade package

Remove package:

>>> pip uninstall package


以上是关于pip使用手册的主要内容,如果未能解决你的问题,请参考以下文章

xlwings 使用手册

Jinja2 简明使用手册

Jinja2 简明使用手册

Graphite+StatsD部署手册

值得收藏!Anaconda:初学者必备手册!

4numpy+pandas速查手册