美文网首页
ubuntu安装指定版本python

ubuntu安装指定版本python

作者: dongzhensong | 来源:发表于2019-11-06 17:06 被阅读0次

    原文:
    https://www.cnblogs.com/m3721w/articles/10344887.html

    ubuntu中使用apt指定Python版本安装

    1. 安装Python软件工具

    sudo apt-get install python-software-properties

    2. 添加仓库镜像源

    sudo add-apt-repository ppa:fkrull/deadsnakes

    sudo vim /etc/apt/sources.list.d/fkrull-ubuntu-deadsnakes-xenial.list

    添加源:deb http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu xenial main

    如果在执行sudo apt-get install python-software-properties过程出现sudo: add-apt-repository: command not found, 那么你需要先执行以下命令

    sudo apt install software-properties-common
    

    3. 更新源

    sudo apt-get update

    1. 从本地仓库安装python

    sudo apt-get install python3.6

    相关文章

      网友评论

          本文标题:ubuntu安装指定版本python

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