python離線安裝庫和修改安裝源
阿新 • • 發佈:2018-12-21
修改安裝源(主要是國內源更方便):
在C:\Users\使用者名稱\建立資料夾pip,然後在裡面建立檔案pip.ini,檔案內容如下(豆瓣源,其它源自己選):
[global]
index-url = http://pypi.douban.com/simple/
trusted-host=pypi.douban.com
[install]
trusted-host=pypi.douban.com
國內源:
阿里雲 http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
中國科學技術大學 http://pypi.mirrors.ustc.edu.cn/simple/
離線下載安裝包,用於公司內網安裝:
pip download 模組名 -d 絕對路徑
例如:
pip download scapy -d D:\Users\songqiu\Desktop
如果提示不信任源,就加上--trusted-host 源域名
例如:
pip download scapy -d D:\Users\songqiu\Desktop --trusted-host pypi.douban.com
下載到本地後,安裝方法為:
解壓,執行python setup.py install