美文网首页
python3的安装

python3的安装

作者: ugvibib | 来源:发表于2017-06-10 23:07 被阅读14次

    1、通过命令行安装Python3

    sudo apt-get install python3
    1
    2、Ubuntu默认使用的是Python2,据了解,版本2/3并不兼容,而Ubuntu底层又使用的是2,故不能卸载2,只需要讲默认的Python指向到3即可。

    sudo rm /usr/bin/python
    sudo ln -s /usr/bin/python3 /usr/bin/python

    相关文章

      网友评论

          本文标题:python3的安装

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