pip ssl certificate verify failed
之前pip很多時(shí)候報(bào)錯(cuò)ssl連接錯(cuò)誤饶套,網(wǎng)上說是鏡像不支持,那就換吧垒探,改pip.ini文件妓蛮,同事幫我改成這樣了,以為醬紫就好了圾叼,可還是不能用
果斷重裝蛤克,啥的,之后好了夷蚊,然后現(xiàn)在隨便pip构挤,飛快~
使用命令:
- pip install --index-url=http://pypi.python.org/simple/ --trusted-host pypi.python.org pythonPackage解決,其中的pythonPackage改為對(duì)應(yīng)得庫名,如scrapy
- pip install pythonPackage -i https://pypi.doubanio.com/simple --trusted-host pypi.douban.com
豆瓣源https://pypi.doubanio.com/simple
##一勞永逸的源
C:\Users\xxxx\AppData\Roaming\pip.ini
[global]
index-url = https://pypi.douban.com/simple
#index-url = https://pypi.tuna.tsinghua.edu.cn/simple
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
[install]
trusted-host = pypi.douban.com
trusted-host = mirrors.ustc.edu.cn
trusted-host = pypi.python.org
btw:將包保存為文本
pip list >pip1.txt
pip freeze --all >pip2.txt