当前位置:   article > 正文

pip详解_pip -i

pip -i

官网说明

pip is the package installer for Python. You can use it to install packages from the Python Package Index and other indexes.

pip 是Python包安装程序。您可以使用它从Python 包索引和其他索引安装包。

Python Package Index简称PyPI。

工具简介

pip 是一个现代的,通用的 Python 包管理工具 。提供了对Python 包的查找、下载、安装、卸载的功能。

功能展示

官方提供的pip 示例

$ pip install requests

$ pip search xml

$ pip show beautifulsoup4

$ pip uninstall requests

windows系统中通过cmd直接执行命令。

常见的命令

Usage:

pip [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 【 搜索PyPI查找包 (Search PyPI for packages.)】

wheel 【 根据您的需求构建轮子 (Build wheels from your requirements.)】

hash 【 包存档的哈希计算值 ( Compute hashes of package archives.)】

completion 【 用于命令完成的辅助命令 ( A helper command used for command completion.)】

debug 【 显示对调试有用的信息 ( Show information useful for debugging.)】

help 【 帮助显示命令的帮助 (Show help for commands.)】

使用国内镜像源

默认情况下 pip 使用的是国外的镜像,在下载的时候速度非常慢,本文我们介绍使用国内清华大学的源,地址为:

https://pypi.tuna.tsinghua.edu.cn/simple

我们可以直接在 pip 命令中使用 -i 参数(i就是index-url)来指定镜像地址,例如:

pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple

以上命令使用清华镜像源安装 numpy 包。

pip install 软件名==版本号  可以安装指定版本的软件包

  1. pip install scikit-learn #下载scikit-learn
  2. pip install scikit-learn==0.18.0 # 下载scikit-learn的0.18.0版本
  3. pip install --user-v scikit-learn==0.18.0 # 以管理者身份下载scikit-learn的0.18.0版本
  4. python -m pip install scikit-learn #将库中的python模块用作脚本去运行安装scikit-learn

这种只对当前安装对命令有用,如果需要全局修改,则需要修改配置文件。

Linux/Mac os 环境中,配置文件位置在 ~/.pip/pip.conf(如果不存在创建该目录和文件):

mkdir ~/.pip

打开配置文件 ~/.pip/pip.conf,修改如下:

  1. [global]
  2. index-url = https://pypi.tuna.tsinghua.edu.cn/simple
  3. [install]
  4. trusted-host = https://pypi.tuna.tsinghua.edu.cn

查看 镜像地址:

  1. $ pip3 config list
  2. global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'
  3. install.trusted-host='https://pypi.tuna.tsinghua.edu.cn'

可以看到已经成功修改了镜像。

Windows下,你需要在当前对用户目录下(C:\Users\xx\pip,xx 表示当前使用对用户,比如张三)创建一个 pip.ini在pip.ini文件中输入以下内容:

  1. [global]
  2. index-url = https://pypi.tuna.tsinghua.edu.cn/simple
  3. [install]
  4. trusted-host = pypi.tuna.tsinghua.edu.cn

其他国内镜像源

  • 中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
  • 豆瓣:http://pypi.douban.com/simple/
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/852919
推荐阅读
相关标签
  

闽ICP备14008679号