Python开发之pip安装及使用方法详解

pip是什么

其实,pip就是 Python标准库(The Python Standard Library)中的一个包,这个包比较特殊,用它可以来管理Python标准库(The Python Standard Library)中其他的包。pip支持从PyPI(https://pypi.org/ ),版本控制,本地项目以及直接从分发文件进行安装。pip是一个命令行程序。 安装pip后,会向系统添加一个pip命令,该命令可以从命令提示符运行。

目前,pip 是The Python Packaging Authority (PyPA) 推荐的 Python 包管理工具!

The Python Packaging Authority (PyPA) is a working group that maintains many of the relevant projects in Python packaging.

pip安装

从 Python 2 版本 >=2.7.9 或 Python 3 版本 >=3.4 开始,官网的安装包中已经自带了 pip,在安装时用户可以直接选择安装。或者如果使用由 virtualenv 或者 pyvenv 创建的 Virtual Environment,那么 pip 也是被默认安装的。

如果没有在安装python时候,选择上"安装pip"选项,那么也可以从本地安装。例如,直接使用get-pip.py进行安装。

首先从官网下载get-pip.py

然后直接运行python get-pip.py即可;

pip使用

安装后,在命令行中键入:pip+ 回车,就会出现如下使用说明:

Usage:
 pip <command> [options]

Commands:
 install           Install packages.
 download          Download packages.
 uninstall          Uninstall packages.
 freeze           Output installed packages in requirements format.
 list            List installed packages.
 show            Show information about installed packages.
 check            Verify installed packages have compatible dependencies.
 config           Manage local and global configuration.
 search           Search PyPI for packages.
 wheel            Build wheels from your requirements.
 hash            Compute hashes of package archives.
 completion         A helper command used for command completion.
 help            Show help for commands.

General Options:
 -h, --help         Show help.
 --isolated         Run pip in an isolated mode, ignoring environment variables and user configuration.
 -v, --verbose        Give more output. Option is additive, and can be used up to 3 times.
 -V, --version        Show version and exit.
 -q, --quiet         Give less output. Option is additive, and can be used up to 3 times (corresponding to
               WARNING, ERROR, and CRITICAL logging levels).
 --log <path>        Path to a verbose appending log.
 --proxy <proxy>       Specify a proxy in the form [user:passwd@]proxy.server:port.
 --retries <retries>     Maximum number of retries each connection should attempt (default 5 times).
 --timeout <sec>       Set the socket timeout (default 15 seconds).
 --exists-action <action>  Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup,
               (a)bort).
 --trusted-host <hostname>  Mark this host as trusted, even though it does not have valid or any HTTPS.
 --cert <path>        Path to alternate CA bundle.
 --client-cert <path>    Path to SSL client certificate, a single file containing the private key and the
               certificate in PEM format.
 --cache-dir <dir>      Store the cache data in <dir>.
 --no-cache-dir       Disable the cache.
 --disable-pip-version-check
               Don't periodically check PyPI to determine whether a new version of pip is available for
               download. Implied with --no-index.
 --no-color         Suppress colored output

pip命令组合比较灵活,下面重点介绍几个。

install

命令行直接键入pip install + 回车,则 出现如下提示:ERROR: You must give at least one requirement to install (see "pip help install")。接着我们键入pip help install,就会出现pip install的使用说明了,如下:

Usage:
 pip install [options] <requirement specifier> [package-index-options] ...
 pip install [options] -r <requirements file> [package-index-options] ...
 pip install [options] [-e] <vcs project url> ...
 pip install [options] [-e] <local project path> ...
 pip install [options] <archive url/path> ...

Description:
 Install packages from:

 - PyPI (and other indexes) using requirement specifiers.
 - VCS project urls.
 - Local project directories.
 - Local or remote source archives.

 pip also supports installing from "requirements files", which provide
 an easy way to specify a whole environment to be installed.

Install Options:
 -r, --requirement <file>  Install from the given requirements file. This option can be used multiple times.
 -c, --constraint <file>   Constrain versions using the given constraints file. This option can be used multiple times.
 --no-deps          Don't install package dependencies.
 --pre            Include pre-release and development versions. By default, pip only finds stable versions.
 -e, --editable <path/url>  Install a project in editable mode (i.e. setuptools "develop mode") from a local project path or a
               VCS url.
 -t, --target <dir>     Install packages into <dir>. By default this will not replace existing files/folders in <dir>. Use
               --upgrade to replace existing packages in <dir> with new versions.
 --platform <platform>    Only use wheels compatible with <platform>. Defaults to the platform of the running system.
 --python-version <python_version>
               Only use wheels compatible with Python interpreter version <version>. If not specified, then the
               current system interpreter minor version is used. A major version (e.g. '2') can be specified to
               match all minor revs of that major version. A minor version (e.g. '34') can also be specified.
 --implementation <implementation>
               Only use wheels compatible with Python implementation <implementation>, e.g. 'pp', 'jy', 'cp', or
               'ip'. If not specified, then the current interpreter implementation is used. Use 'py' to force
               implementation-agnostic wheels.
 --abi <abi>         Only use wheels compatible with Python abi <abi>, e.g. 'pypy_41'. If not specified, then the
               current interpreter abi tag is used. Generally you will need to specify --implementation,
               --platform, and --python-version when using this option.
 --user           Install to the Python user install directory for your platform. Typically ~/.local/, or
               %APPDATA%\Python on Windows. (See the Python documentation for site.USER_BASE for full details.)
 --root <dir>        Install everything relative to this alternate root directory.
 --prefix <dir>       Installation prefix where lib, bin and other top-level folders are placed
 -b, --build <dir>      Directory to unpack packages into and build in. Note that an initial build still takes place in a
               temporary directory. The location of temporary directories can be controlled by setting the TMPDIR
               environment variable (TEMP on Windows) appropriately. When passed, build directories are not
               cleaned in case of failures.
 --src <dir>         Directory to check out editable projects into. The default in a virtualenv is "<venv path>/src".
               The default for global installs is "<current dir>/src".
 -U, --upgrade        Upgrade all specified packages to the newest available version. The handling of dependencies
               depends on the upgrade-strategy used.
 --upgrade-strategy <upgrade_strategy>
               Determines how dependency upgrading should be handled [default: only-if-needed]. "eager" -
               dependencies are upgraded regardless of whether the currently installed version satisfies the
               requirements of the upgraded package(s). "only-if-needed" - are upgraded only when they do not
               satisfy the requirements of the upgraded package(s).
 --force-reinstall      Reinstall all packages even if they are already up-to-date.
 -I, --ignore-installed   Ignore the installed packages (reinstalling instead).
 --ignore-requires-python  Ignore the Requires-Python information.
 --no-build-isolation    Disable isolation when building a modern source distribution. Build dependencies specified by PEP
               518 must be already installed if this option is used.
 --install-option <options> Extra arguments to be supplied to the setup.py install command (use like --install-option="--
               install-scripts=/usr/local/bin"). Use multiple --install-option options to pass multiple options
               to setup.py install. If you are using an option with a directory path, be sure to use absolute
               path.
 --global-option <options>  Extra global options to be supplied to the setup.py call before the install command.
 --compile          Compile Python source files to bytecode
 --no-compile        Do not compile Python source files to bytecode
 --no-warn-script-location  Do not warn when installing scripts outside PATH
 --no-warn-conflicts     Do not warn about broken dependencies
 --no-binary <format_control>
               Do not use binary packages. Can be supplied multiple times, and each time adds to the existing
               value. Accepts either :all: to disable all binary packages, :none: to empty the set, or one or
               more package names with commas between them. Note that some packages are tricky to compile and may
               fail to install when this option is used on them.
 --only-binary <format_control>
               Do not use source packages. Can be supplied multiple times, and each time adds to the existing
               value. Accepts either :all: to disable all source packages, :none: to empty the set, or one or
               more package names with commas between them. Packages without binary distributions will fail to
               install when this option is used on them.
 --prefer-binary       Prefer older binary packages over newer source packages.
 --no-clean         Don't clean up build directories.
 --require-hashes      Require a hash to check each requirement against, for repeatable installs. This option is implied
               when any package in a requirements file has a --hash option.
 --progress-bar <progress_bar>
               Specify type of progress to be displayed [off|on|ascii|pretty|emoji] (default: on)

Package Index Options:
 -i, --index-url <url>    Base URL of Python Package Index (default https://pypi.org/simple). This should point to a
               repository compliant with PEP 503 (the simple repository API) or a local directory laid out in the
               same format.
 --extra-index-url <url>   Extra URLs of package indexes to use in addition to --index-url. Should follow the same rules as
               --index-url.
 --no-index         Ignore package index (only looking at --find-links URLs instead).
 -f, --find-links <url>   If a url or path to an html file, then parse for links to archives. If a local path or file:// url
               that's a directory, then look for archives in the directory listing.
 --process-dependency-links Enable the processing of dependency links.

General Options:
 -h, --help         Show help.
 --isolated         Run pip in an isolated mode, ignoring environment variables and user configuration.
 -v, --verbose        Give more output. Option is additive, and can be used up to 3 times.
 -V, --version        Show version and exit.
 -q, --quiet         Give less output. Option is additive, and can be used up to 3 times (corresponding to WARNING,
               ERROR, and CRITICAL logging levels).
 --log <path>        Path to a verbose appending log.
 --proxy <proxy>       Specify a proxy in the form [user:passwd@]proxy.server:port.
 --retries <retries>     Maximum number of retries each connection should attempt (default 5 times).
 --timeout <sec>       Set the socket timeout (default 15 seconds).
 --exists-action <action>  Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort).
 --trusted-host <hostname>  Mark this host as trusted, even though it does not have valid or any HTTPS.
 --cert <path>        Path to alternate CA bundle.
 --client-cert <path>    Path to SSL client certificate, a single file containing the private key and the certificate in
               PEM format.
 --cache-dir <dir>      Store the cache data in <dir>.
 --no-cache-dir       Disable the cache.
 --disable-pip-version-check
               Don't periodically check PyPI to determine whether a new version of pip is available for download.
               Implied with --no-index.
 --no-color         Suppress colored output

上面一大堆,总结来说,安装命令就是:pip install <包名> 或 pip install -r requirements.txt(对于本地安装包可以指定路径)。唯一需要特殊说明的是,安装时可以指定版本号来安装,举例如下:

pip install SomePackage       # 最新版本
pip install SomePackage==1.0.4    # 指定版本
pip install 'SomePackage>=1.0.4'   # 最小版本

uninstall

卸载安装包命令:pip uninstall <包名> 或 pip uninstall -r requirements.txt

升级包

pip install -U <包名> 或:pip install <包名> --upgrade

freeze

pip freeze,查看已经安装的包及版本信息。导出到指定文件中,如图,注意 “ > ”,文件名称随意。常见按第二种写法。

list

列出当前已经安装的包。使用命令pip list -o则可查询可升级的包。

show

显示包所在目录及信息,格式为:pip show <包名>。如果不加包名,则提示ERROR: Please provide a package name or names.。

search

搜索包,格式为:pip search <搜索关键字>。如果不写关键字,则提示ERROR: Missing required argument (search query).。

更多关于pip安装及使用方法请查看下面的相关链接

(0)

相关推荐

  • Python pip配置国内源的方法

    众所周知,Python使用pip方法安装第三方包时,需要从https://pypi.org/资源库中下载,但是会面临下载速度慢,甚至无法下载的尴尬,这时,你就需要知道配置一个国内源有多么重要了,通过一番摸索和尝试,总结了一些经验,分享给大家: 首先贴一下下载速度的对比图: 图1:国外官网下载 图2:国内镜像下载 给大家推荐几个值得拥有的国内镜像站 [ 个人推荐清华大学pypi镜像站(https://mirrors.tuna.tsinghua.edu.cn/help/pypi/),每五分钟同步一次

  • Python3安装pip工具的详细步骤

    前几天安装Python的时候没有装上pip工具,所以只能现在手动安装了. 首先,访问https://bootstrap.pypa.io/get-pip.py这个网址,然后Ctrl+S将get-pip.py文件 保存到你所安装的Python的Scripts目录下: 然后进入Scripts目录,并在该目录下输入cmd,进入cmd界面: 在命令行界面输入python get-pip.py,pip3工具就会自动安装: 安装成功之后输入python -m pip --version, 确保成功安装了pip

  • Centos8(最小化安装)全新安装Python3.8+pip的方法教程

    最小化安装Python8后安装Python3.8.1,网上找了一圈教程,没有一个能完全成功的.或者能安装成功,但pip无法使用.最后根据多个教程整理了一份命令,测试成功,安装使用完全没有问题. yum -y install wget yum -y install setup yum -y install perl yum install openssl-devel -y yum install zlib-devel -y yum -y groupinstall "Development tool

  • Linux下升级安装python3.8并配置pip及yum的教程

    服务器的CentOS 7中自带的python版本是python-2.7.5,需要再安装一个 python-3.8.1 一.查看版本 安装前查看一下是否已经安装过python,我这里自带了python2.7.5版本,所以需要在不删除的情况下,在安装一个python3.8.1版本的, python -V 二.安装Python3.8.1 官网下载地址:https://www.python.org/downloads/source/ # 解压 tar -zxf Python-3.8.1.tgz # 安装

  • python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool的解决方法

    今天使用pip安装第三库时,有时会报错: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 使用镜像:pip install xxxx -i https://pypi.douban.com/simple 如下: pip install virtualenv -i https://pypi.dou

  • 解决python明明pip安装成功却找不到包的问题

    如下所示: 原因1:版本不对,如用环境变量设置的python3.7路径,那么用的就是3.7的pip.exe安装了包.却用的是2.7的python运行 原因2:名称重复,在当前路径下有与import的包重名文件或文件夹 原因3:路径不对,漏写或者大小写不对,字母或者数字看错,注意l,1,I三者的区别,注意区分0和O 原因4:虽然版本下载对了,但是函数名或包名变了,如PyQt5,是python3的一个包,用QWebPage找不到,因为改名为了QWebEnginePage 以上这篇解决python明明

  • pip install python 快速安装模块的教程图解

    之前python安装模块要在网络上下载,从python2.7.9之后,以及python3,python就自带pip 这个命令,能够快速的安装模块 1, 首先打开python的主文件夹 2.在主文件夹里面有一个Script文件,打开Script文件 3 复制这个文件目录 4,在我的电脑图标,右键,点击属性 最后点击确定,即可 然后打开命令提示符 总结 以上所述是小编给大家介绍的pip install python 快速安装模块的教程图解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时

  • 使用python脚本自动创建pip.ini配置文件代码实例

    这篇文章主要介绍了使用python脚本自动创建pip.ini配置文件代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 运行一下python代码自动创建pip/pip.ini文件并添加pip源 """ python建立pip.ini.py 2016年4月30日 03:35:11 codegay """ import os ini="""[global] inde

  • 多版本python的pip 升级后, pip2 pip3 与python版本失配解决方法

    mint19.2   本来pip 和 pip2 对应 python2.7   pip3对应python3.6 用源码安装了python3.7之后. 这样 版本也没问题. 但是,  用pip3.7 安装包的时候 提示 pip需要升级,  但是一旦升级, 就不对了 pip  pip2 pip3 都指向了pip3.7 这导致一系列问题. 包pgadmin4 启动后报 csrf 错误 , 甚至进而导致docker-compose模式下postgres服务下线! 而且,无法用重装python-pip, p

  • 解决Python3.8用pip安装turtle-0.0.2出现错误问题

    turtle库是python的基础绘图库,官方手册 这个库被介绍为一个最常用的用来给孩子们介绍编程知识的方法库,其主要是用于程序设计入门,是标准库之一,利用turtle可以制作很多复杂的绘图. turtle原理理解 turtle名称含义为"海龟",我们想象一只海龟,位于显示器上窗体的正中心,在画布上游走,它游走的轨迹就形成了绘制的图形. 海龟的运动是由程序控制的,它可以变换颜色,改变大小(宽度)等. 正文开始: 该经验主要针对: 1.命令行受管理员权限限制 2.python3.8与tu

  • python pip安装包出现:Failed building wheel for xxx错误的解决

    出现原因:缺失相应的whl文件. 解决办法:下载并安装对应的whl文件. 提供一个whl文件的下载网址:http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml 以hmmlearn-0.2.2-cp36-cp36m-win32.whl为例,cp36代表python3.6版本和window32位,寻找与自己py相符合的版本! 安装方法: 1.切换到自己py环境 2.代码如下: pip install 文件路径 以上这篇python pip安装包出现:Faile

  • python3中pip3安装出错,找不到SSL的解决方式

    最近在Ubuntu16.04上安装Python3.6之后,使用pip命令出现了问题,提示说找不到ssl模块,出现错误如下: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. Could not fetch URL https:*******: There was a problem confirming the ssl certific

  • Python pip 安装与使用(安装、更新、删除)

    pip 是 Python 包管理工具,该工具提供了对Python 包的查找.下载.安装.卸载的功能. pip检测更新 命令:pip list –outdated pip升级包 命令:pip install --upgrade packagename pip卸载包 命令:pip uninstall packagename pip -i 和 -U 参数 例子: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -U funcat -i:

  • 浅析Python3 pip换源问题

    pip安装源 背景# 在实际开发中, 可能要大量使用第三方模块(包), 更换至国内下载源, 可大幅提升下载速度 """ 1.采用国内源,加速下载模块的速度 2.常用pip源: -- 豆瓣:https://pypi.douban.com/simple -- 阿里:https://mirrors.aliyun.com/pypi/simple 3.加速安装的命令: -- >: pip install -i https://pypi.douban.com/simple 模块名

  • windows下python安装pip方法详解

    1.前提 你要已经安装了 某个 版本的 python, (下载地址 https://www.python.org/downloads/) 安装后,需要配置python.exe 的环境变量,否则在 输入 python指令时,会出现如图错误 配置环境变量 鼠标右键我的电脑  -> 属性 -> 高级系统设置 -> 环境变量 -> 编辑PATH -> 在最后面加上我们的Python安装路径 -> 点击确定 注意:Path 路径最后要加上 分号 :      例如我的路径 C:\

  • python中提高pip install速度

    pip install命令默认是用的是python官方源,由于一些客观原因,连接速度很慢,甚至超时中断,到时很多模块安装不上,甚是苦恼! 怎么办? 使用国内镜像源,将以下命令完成拷贝出来,粘贴至记事本中,保存为bat文件,双击执行该批处理文件. @echo off rem 声明采用UTF-8编码chcp 65001 echo \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* echo

  • win10系统下python3安装及pip换源和使用教程

    一.python3的安装 建议安装python3,python2在未来将不再维护. python官方下载地址 https://www.python.org/downloads/windows/ 选择 executable installer ,根据自己系统选择64位还是32位的安装包. 下载完成后双击运行 勾选Add Python 3.7 to PATH,方便在cmd命令行中调用,然后选择Customize installation. pip必选,其他根据自己的情况选择,无Pycharm等pyt

随机推荐