美文网首页
Python pip安装命令

Python pip安装命令

作者: michaelxwang | 来源:发表于2022-06-20 16:25 被阅读0次

    更新pip

    python -m pip install --upgrade pip
    

    使用清华源

    pip install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple/
    

    使用豆瓣源

    pip install pymysql -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
    # --trusted-host http://pypi.douban.com 获得ssl证书的认证
    

    相关文章

      网友评论

          本文标题:Python pip安装命令

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