pipy国内镜像目前有:
http://pypi.douban.com/ 豆瓣
http://pypi.hustunique.com/ 华中理工大学
http://pypi.sdutlinux.org/ 山东理工大学
http://pypi.mirrors.ustc.edu.cn/ 中国科学技术大学
对于pip这种在线安装的方式来说,很方便,但网络不稳定的话很要命。使用国内镜像相对好一些,
如果想手动指定源,可以在pip后面跟-i 来指定源,比如用豆瓣的源来安装web.py框架:
pip install web.py -i http://pypi.douban.com/simple
注意后面要有/simple目录!!!
要配制成默认的话,需要创建或修改配置文件(linux的文件在~/.pip/pip.conf,windows在%HOMEPATH%\pip\pip.ini),修改内容为:
code:
[global]
index-url = http://pypi.douban.com/simple
这样在使用pip来安装时,会默认调用该镜像。
更多配置参数见:http://www.pip-installer.org/en/latest/configuration.html
Configuration
Config file
pip allows you to set all command line option defaults in a standard ini style config file.
The names and locations of the configuration files vary slightly across platforms.
- On Unix and Mac OS X the configuration file is: $HOME/.pip/pip.conf
- On Windows, the configuration file is: %HOME%\pip\pip.ini
You can set a custom path location for the config file using the environment variable PIP_CONFIG_FILE.
The names of the settings are derived from the long command line option, e.g. if you want to use a different package index (--index-url) and set the HTTP timeout (--default-timeout) to 60 seconds your config file would look like this:
[global]
timeout = 60
index-url = http://download.zope.org/ppix
Each subcommand can be configured optionally in its own section so that every global setting with the same name will be overridden; e.g. decreasing the timeout to 10 seconds when running the freeze(Freezing Requirements) command and using 60 seconds for all other commands is possible with:
[global]
timeout = 60
[freeze]
timeout = 10
Boolean options like --ignore-installed or --no-dependencies can be set like this:
[install]
ignore-installed = true
no-dependencies = yes
Appending options like --find-links can be written on multiple lines:
[global]
find-links =
http://download.example.com
[install]
find-links =
http://mirror1.example.com
http://mirror2.example.com
Environment Variables
pip’s command line options can be set with environment variables using the formatPIP_<UPPER_LONG_NAME> . Dashes (-) have to replaced with underscores (_).
For example, to set the default timeout:
export PIP_DEFAULT_TIMEOUT=60
This is the same as passing the option to pip directly:
pip --default-timeout=60 [...]
To set options that can be set multiple times on the command line, just add spaces in between values. For example:
export PIP_FIND_LINKS="http://mirror1.example.com http://mirror2.example.com"
is the same as calling:
pip install --find-links=http://mirror1.example.com --find-links=http://mirror2.example.com
Config Precedence
Command line options have precedence over environment variables, which have precedence over the config file.
Within the config file, command specific sections have precedence over the global section.
Examples:
- --host=foo overrides PIP_HOST=foo
- PIP_HOST=foo overrides a config file with [global] host = foo
- A command specific section in the config file [<command>] host = bar overrides the option with same name in the [global] config file section
Command Completion
pip comes with support for command line completion in bash and zsh.
To setup for bash:
$ pip completion --bash >> ~/.profile
To setup for zsh:
$ pip completion --zsh >> ~/.zprofile
Alternatively, you can use the result of the completion command directly with the eval function of you shell, e.g. by adding the following to your startup file:
eval "`pip completion --bash`"
Window 需要修改:
%PYTHON_HOME%\Lib\site-packages\pip\cmdoptions.py
index_url = OptionMaker( '-i', '--index-url', '--pypi-url', dest='index_url', metavar='URL', #default='https://pypi.python.org/simple/', default='http://mirrors.bistu.edu.cn/pypi/', help='Base URL of Python Package Index (default %default).')
%PYTHON_HOME%\Lib\site-packages\pip\commands\search.py
class SearchCommand(Command): """Search for PyPI packages whose name or summary contains <query>.""" name = 'search' usage = """ %prog [options] <query>""" summary = 'Search PyPI for packages.' def __init__(self, *args, **kw): super(SearchCommand, self).__init__(*args, **kw) self.cmd_opts.add_option( '--index', dest='index', metavar='URL', #default='https://pypi.python.org/pypi', default='http://mirrors.bistu.edu.cn/pypi/', help='Base URL of Python Package Index (default %default)') self.parser.insert_option_group(0, self.cmd_opts)
[Linux]修改easy_install和pip的镜像地址
使用easy_install和pip会让Pyhthon的模块安装和管理变得非常简单,但是,如果你身在国内的话,从官方的镜像下载的速度是很令人抓狂的事情,如同修改apt-get或yum的镜像地址一样,easy_install和pip也需要修改镜像地址。修改easy_install和pip的镜像地址通常可以有以下两种方法,可以分别使用命令和配置方式实现。
方法1:命令方式临时修改
easy_install:
1 |
easy_install -i http://e.pypi.python.org/simple fabric |
pip:
1 |
pip -i http://e.pypi.python.org/simple install fabric |
方法2:配置方式修改
easy_install:
1.打开pydistutils.cfg
1 |
vi ~/.pydistutils.cfg |
2.写入以下内容
1 2 |
[easy_install] index_url = http://e.pypi.python.org/simple |
pip:
1.打开pip.conf
1 |
vi ~/.pip/pip.conf |
2.写入以下内容
1 2 |
[global] index-url = http://e.pypi.python.org/simple |
速度比较快的国内镜像,都来自清华大学,服务器在北京。公网的服务器为官方镜像
公网:http://e.pypi.python.org/simple
教育网:http://pypi.tuna.tsinghua.edu.cn/simple
相关推荐
使用国内镜像源下载Python安装包或安装第三方库是提高开发效率的有效手段之一。通过本文的介绍,相信读者已经掌握了如何利用华为云提供的Python镜像源进行高效下载的方法。当然,在实际操作过程中,也可以尝试其他...
本知识点主要围绕如何更换Python的包管理工具pip以及conda的源为国内镜像源展开,以解决在开发时由于国内外网络环境差异导致的下载速度慢问题。同时,提供了一个8M大小的小工具,该工具可以实现一键更换pip和conda源...
通过使用此配置文件,用户可以轻松地将pip的默认源更改为清华大学的镜像源,从而加速包的下载和安装速度。 配合阅读:https://blog.csdn.net/m0_51246196/article/details/132261654?spm=1001.2014.3001.5501 配置...
总的来说,解决国内安装TensorFlow和OpenCV速度慢的问题,主要依赖于使用国内的Python包镜像源。这些镜像源通常与官方Pypi仓库同步,能提供快速的下载速度,使得开发者能够高效地进行项目开发。同时,保持pip的更新...
标题中提到的知识点是关于在使用pip安装Python库时,利用清华大学的镜像源来加速下载matplotlib库的过程。在这部分的讨论中,我们需要先明确几个概念和步骤。 首先,pip是Python的包安装器,用于安装和管理Python包...
标题中的“pip安装方式清华镜像源”指的是在Python环境中,使用`pip`这个包管理工具,通过清华大学的镜像源来加速安装Python库的方法。`pip`是Python的默认包管理器,它允许用户方便地安装、升级和卸载Python软件包...
在Python编程环境中,matplotlib是一个非常重要的数据可视化库,它允许开发者创建各种静态、动态和交互式的图表。...正确配置和使用国内的镜像源能显著提升包的安装效率,避免因网络问题导致的安装失败。
更换 pip 镜像源对于加速 Python 库的安装和更新非常重要,尤其是在网络不稳定或者 PyPI 服务器响应缓慢的情况下。下面将介绍几种常用的方法来更改 pip 的镜像源。 ##### 2.1 使用命令行临时更换镜像源 一种常见的...
总结来说,通过利用国内的Python包镜像源,我们可以显著提高`pip`安装第三方库的速度,尤其对于依赖大量库的项目或者进行持续集成时,这将大大提高工作效率。同时,定期更新`pip`至最新版本也是确保安全性和兼容性的...
3. **使用第三方工具**:还有一些第三方工具可以帮助管理Python国内源,如`pip-accel`、`pipenv`等,这些工具可以自动检测并使用最快的镜像源。 #### 使用Python国内源的注意事项 尽管使用Python国内源能够带来...
为了解决这个问题,我们可以利用国内的镜像源来加速下载。例如,可以使用豆瓣(douban)或清华大学(tuna)的PyPI镜像源。以下是一个使用豆瓣镜像源安装TensorFlow的例子: ```bash pip install tensorflow -i ...
在安装依赖包时,可以使用国内镜像源来加速安装速度。例如,可以使用以下镜像源: * 清华:https://pypi.tuna.tsinghua.edu.cn/simple * 阿里云:http://mirrors.aliyun.com/pypi/simple/ * 中国科技大学:...
pip 可以使用镜像源来加速安装 Python 包的速度。下面将介绍使用清华镜像源的方法。 使用清华镜像源 1. 打开命令行工具,输入 `pip install -i https://pypi.tuna.tsinghua.edu.cn/simple <package_name>`,其中 `...
6. **pip配置**:可以通过编辑`~/.pip/pip.conf`(Linux或MacOS)或`%APPDATA%\pip\pip.ini`(Windows)来设置全局的pip配置,比如镜像源,以加速库的下载。 7. **依赖管理**:对于大型项目,可以使用`requirements...
在本文中,我们将深入探讨如何在Python环境下配置和安装OpenCV库,这主要涉及使用conda管理虚拟环境以及从可靠的国内镜像源安装依赖项。首先,我们从安装conda开始。 1. 安装conda: 在Windows系统中,你可以从...
为了解决这个问题,可以通过设置pip使用国内的镜像源来加速下载。镜像源是国外仓库的镜像,位于国内,能显著提高下载速度。 以下是详细的配置步骤: 1. 首先,打开Windows资源管理器,点击“此电脑”或者“我的...
这时候,开发者可以通过使用国内的镜像源来加速下载和安装过程。国内有一些网站提供了 PyPI 的镜像服务,例如清华、豆瓣、阿里等。开发者只需要在命令行中输入 `pip install -i 镜像源地址 库名`,就可以使用国内源...
1. **阿里云pip镜像**:阿里云提供了国内的PyPI镜像,可以显著提高Python包的下载速度。使用方法是在`pip`命令中添加`--index-url`或`-i`参数,指向阿里云的镜像地址。例如: ``` pip install --index-url=...
为解决这一问题,可以利用国内的PyPI镜像,如豆瓣、阿里云或中国科学技术大学的镜像地址,这样可以加速包的下载和安装过程。 了解并熟练掌握这些Python的包管理和基本操作技巧,对于初学者来说至关重要,它不仅可以...
- 如果遇到网络问题或者速度较慢,可以尝试使用国内的镜像源,如阿里云或豆瓣的pip源,通过`pip install --index-url https://mirrors.aliyun.com/pypi/simple/ pandas`或`pip install --index-url ...