美文网首页
python3.7在windows10 下的安装(踩过的深坑)

python3.7在windows10 下的安装(踩过的深坑)

作者: 喵了个咪0 | 来源:发表于2020-09-15 00:42 被阅读0次

    一:更换pip为国内的源(这个看脸啊,如果不能直接pip安装wheel,就只能更换)

    永久更换:pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

    临时更换:pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/simple

    国内各大源的地址:

    清华大学https://pypi.tuna.tsinghua.edu.cn/simple/

    中国科技大学https://pypi.mirrors.ustc.edu.cn/simple/

    中国科学院http://pypi.mirrors.opencas.cn/simple/

    阿里云http://mirrors.aliyun.com/pypi/simple/

    豆瓣http://pypi.douban.com/simple

    接着就可以愉快的安装wheel了

    二:下载pycurl的wheel的包

    http://www.lfd.uci.edu/~gohlke/pythonlibs/下载对应的包:需要下载对应版本的包,不然平台不支持,比如:

    需要下载的版本是:pycurl‑7.43.0.4‑cp37‑cp37m‑win_amd64.whl(win10 python3.7)

    三:安装

    pip install pycurl-7.43.1-cp37-cp37m-win_amd64.whl

    安装完成

    相关文章

      网友评论

          本文标题:python3.7在windows10 下的安装(踩过的深坑)

          本文链接:https://www.haomeiwen.com/subject/jccxyktx.html