pip源配置

1、使用配置文件配置文件
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun.com/pypi/simple/

配置文件放置位置
Linux下:
放在~/.pip/pip.conf
windows下:
用户文件夹下\pip\pip.ini

2、使用命令行临时改变pip源
pip install -i <mirror> --trusted-host <mirrorhost> package

例如
pip install -i http://pypi.douban.com/simple/  --trusted-host pypi.douban.com  pandas

国内源:
    http://pypi.v2ex.com/simple/
    http://pypi.douban.com/simple/
    http://mirrors.aliyun.com/pypi/simple/

时间: 2024-10-19 05:26:46

pip源配置的相关文章

Windows7下pip源配置

在使用virtualenv情况下新增文件path\to\env\pip.ini ,内容如下: [global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com https://pip.pypa.io/en/stable/user_guide/#configuration 默认环境下连接的Python官方源经常遇到网络问题,国内的pip源douban的似乎不太行

python[pip源配置]

windows: %HOME%\pip\pip.ini Linux/Unix: /etc/pip.conf ~/.pip/pip.conf ~/.config/pip/pip.conf pip.ini内容 [global] index-url = http://pypi.douban.com/simple

Pip -- linux 下的源 配置

1.在根目录下创建.pip文件夹 mkdir ~/.pip 2.在创建好的.pip文件夹下创建pip源配置文件 touch ~/.pip/pip.conf 3.选择国内某一pip源配置到文件pip.conf中,样例如下(这里用的是阿里的pip源): [global] index-url=http://mirrors.aliyun.com/pypi/simple trusted-host=mirrors.aliyun.com 版本2: [global] timeout = 60 index = h

配置当前用户使用豆瓣pip源

配置当前用户使用豆瓣pip源 mkdir ~/.pip/ cat ~/.pip/pip.conf [global] index-url = http://pypi.douban.com/simple download_cache = ~/.cache/pip [install] use-mirrors = true mirrors = http://pypi.douban.com/ 一些可选的参数 trusted-host = pypi.douban.com timeout=6000 来源: h

Python 配置 pip 源

本篇博客记录了在 python 开发过程中,经常需要配置 pip 源,以加快依赖包的下载速度,在构建 docker 镜像时,最好也指定 pip 源. 配置 pip 源 在当前目录下建立~/.pip/pip.conf文件,添加如下内容 1 2 3 4 5 [global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyun.com 大专栏  Python 配置 pip 源c

pip简单配置

pip安装Python模块的工具,等价于Redhat中的yum! 01.下载 百度云盘:http://pan.baidu.com/s/1eRHGBfk             ###相关的 Linux很多都默认安装Python,python -V  #查看python版本 python https://www.python.org/downloads/source/ Python-2.6.6.tgz   :点击下载 Python2.7.13      :点击下载 tar Jxf Python-2

向pip源提交项目

在工作中,别组同事要求我们把代码上传至pip源,经过仔细的研究成功上传并记录如下: 注册pypi的账号 https://pypi.python.org/pypi?%3Aaction=register_form 安装setuptools:https://pypi.python.org/pypi/setuptools  下载ez_setup.py:https://bootstrap.pypa.io/ez_setup.py 执行:python ez_setup.py 配置~/.pypirc文件:(wi

python-配置pip源

可以配置pip源的路径: 三种形式: 1.Per-user: UNIX default configuration fileHOME/.config/pip/pip.confmacOHOME/Library/Application Support/pip/pip.conf HOME/.config/pip/pip.conf(如果HOME/Library/Application Support/pip/不存在) Windows:%APPDATA%\pip\pip.ini legacy per-us

Python pip源使用国内镜像

常用镜像源 豆瓣 https://pypi.douban.com/simple 阿里云 https://mirrors.aliyun.com/pypi/simple 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple 中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple 官方 https://pypi.python.or