Python修改pip使用國內源

使用python必然離不開pip這一強大的包管理工具.可是因爲pip的官方源在國外,因此形成安裝包速度要麼特別慢或者根本就安裝不了,因此修改python源是安裝包時必備的技能python


臨時使用linux

使用阿里源安裝requests
pip install requests -i https://mirrors.aliyun.com/pypi/simple

永久修改:
自動修改(推薦)windows

pip config set global.trusted-host mirrors.aliyun.com
pip config set global.index-url https://mirrors.aliyun.com/simple

手動修改服務器

  • linux/mac (沒有就建立一個)ide

    vi ~/.pip/pip.conf
    [global]
    trusted-host=mirrors.aliyun.com
    index-url=https://mirrors.aliyun.com/pypi/simple/
  • windows下,直接在user目錄中建立一個pip目錄,如:C:\Users\xx-user\pip\pip.ini
    [global]
    trusted-host=mirrors.aliyun.com
    index-url=https://mirrors.aliyun.com/pypi/simple/

    注意:爲了一些沒必要要的麻煩建議把trusted-host也同步設置.工具

經常使用源:
官方 https://pypi.python.org/simple/
阿里雲
http://mirrors.aliyun.com/pypi/simple/
豆瓣
http://pypi.douban.com/simple/
清華
https://pypi.tuna.tsinghua.edu.cn/simple阿里雲


我的喜愛,由於管理的服務器大可能是阿里雲,因此安裝包時第一步就是先設置源爲阿里,不光由於速度快,還由於走的內網不花費流量喲.url

that's allcode

相關文章
相關標籤/搜索