pip安裝源配置
PyPI使用國內源
透過幾次pip的使用,對於預設的pip源的速度實在無法忍受,於是便蒐集了一些國內的pip源,如下:
阿里雲
中國科技大學
豆瓣(douban)
清華大學
中國科學技術大學
使用方法很簡單,直接 -i 加 url 即可!如下:
1
|
# pip install web.py
-
i http:
/
/
pypi.douban.com
/
simple
|
如果有如下報錯:
請使用命令:
1
|
# pip install web.py -i --trusted-host pypi.douban.com
|
如果想配置成預設的源,方法如下:
需要建立或修改配置檔案(一般都是建立),
linux的檔案在~/.pip/pip.conf,
windows在%HOMEPATH%\pip\pip.ini),
修改內容為:
[global] index-url = [install] trusted-host=pypi.douban.com
這樣在使用pip來安裝時,會預設呼叫該映象。
臨時使用其他源安裝軟體包的python指令碼如下:
1
2
3
4
5
6
7
|
#!/usr/bin/python
import
os
package
=
raw_input
(
"Please input the package which you want to install!\n"
)
command
=
"pip install %s -i --trusted-host pypi.mirrors.ustc.edu.cn"
%
package
os.system(command)
|
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9606353/viewspace-2158355/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- pip 清華源安裝
- pip安裝如何新增清華源
- ubuntu更換安裝源和pip映象源Ubuntu
- pip 安裝
- 安裝pip
- Python pip 源配置Python
- Python 包管理 pip 安裝使用清華源Python
- CentOS安裝pipCentOS
- windows下安裝pip,強制升級pip,安裝tensorflowWindows
- pip 配置與更換映象源
- pip安裝selenium
- pip 安裝 flask、redisFlaskRedis
- Python pip安裝Python
- python安裝pipPython
- Mac 下安裝pipMac
- CentOS 快速安裝pipCentOS
- xFormers pip 安裝ORM
- Windows下Python安裝併為pip配置阿里映象WindowsPython阿里
- CentOS6.5安裝pipCentOS
- centos7 安裝pipCentOS
- pip進行模組安裝
- Linux 下安裝pipLinux
- pip安裝模組失敗
- pip線上安裝selenium
- pip安裝特別慢
- windows中安裝pip工具Windows
- CentOS7.6-pip安裝CentOS
- pip 命令安裝模組包
- Python pip的安裝及解除安裝Python
- anaconda pip 安裝速度慢,更換阿里雲源阿里
- pip離線安裝和配置pypi國內加速映象實踐
- pip 安裝 selenium 失敗
- python怎麼安裝pip?Python
- CentOS下安裝pip 18.0CentOS
- Centos7.2中安裝pipCentOS
- Windows10上pip安裝Windows
- pip 安裝 grpcio 報錯RPC
- Mac OS下pip安裝 pillowMac