美文网首页
Python安装

Python安装

作者: Liu____ | 来源:发表于2020-06-24 14:04 被阅读0次

    python3 安装

    安装:
    brew  install python3
    查看版本:
    python3 -V
    

    pip3安装

    安装:
    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    python3 get-pip.py
    pip3 install requests
    查看版本:
    pip3 -V
    

    pymysql安装

    安装:
    pip3 install PyMySQL
    查看版本:
    pip3 show pymysql
    

    mod-pbxproj安装

    安装:
    pip3 install pbxproj
    查看版本:
    pip3 show pbxproj
    

    相关文章

      网友评论

          本文标题:Python安装

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