python安装库的时候产生'check_hostname requires server_hostname'解决方法

pip install xxx的时候
报错
...
    raise ValueError("check_hostname requires server_hostname")
ValueError: check_hostname requires server_hostname

换源
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/

posted @ 2022-09-24 13:00  一个路过的小黑  阅读(122)  评论(0编辑  收藏  举报