美文网首页
Ubuntu18.04设置默认使用Python3

Ubuntu18.04设置默认使用Python3

作者: 一只想飞的猪_85e2 | 来源:发表于2019-11-06 15:33 被阅读0次

    一、默认Python2调整为Python3

    sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100

    sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 200

    二、默认Python3调整为Python2

    sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 200

    sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 100

    相关文章

      网友评论

          本文标题:Ubuntu18.04设置默认使用Python3

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