美文网首页
Python pip 换源一行命令直接搞定

Python pip 换源一行命令直接搞定

作者: 后厂村村长 | 来源:发表于2023-04-17 19:23 被阅读0次
    pip换源一行命令直接搞定

    全局切换到清华源
    pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    直接一步到位,不用费劲巴拉的创文件之类;

    随文附几个国内常用pip源:

    阿里云 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/

    如果只想临时使用的话,可以采用如下命令格式
    pip3 install 工具库名 -i 指定源
    示例(numpy切换到aliyun源):
    pip3 install numpy -i http://mirrors.aliyun.com/pypi/simple/

    相关文章

      网友评论

          本文标题:Python pip 换源一行命令直接搞定

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