美文网首页UbuntuUbuntu开发者专栏
Docker下的ubuntu 安装python3.6 及pip

Docker下的ubuntu 安装python3.6 及pip

作者: 步履不停的Suunny | 来源:发表于2018-08-22 19:16 被阅读7626次

    直接安装 apt-get install python3.6 ,失败

    root@91d2d47e8aee:/# apt-get install python3.6                  
    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
    E: Unable to locate package python3.6
    E: Couldn't find any package by glob 'python3.6'
    E: Couldn't find any package by regex 'python3.6'
    

    参考Ubuntu怎样安装Python3.6

    继续安装:

    步骤1:添加ppa到系统

    什么是ppa

    add-apt-repository ppa:jonathonf/python-3.6 
    失败,问题:add-apt-repository找不到  
    

    解决办法:

    执行下面两个步骤:

    apt-get install python-software-properties  
    apt-get install software-properties-common
    

    Ubuntu无法找到add-apt-repository问题的解决方法

    重复步骤1:

    add-apt-repository ppa:jonathonf/python-3.6
    

    步骤2 更新:

    apt-get update
    

    步骤3 安装:

    apt-get install python3.6
    

    安装完成!!

    修改python命令默认python3.6:

    ubuntu默认安装了python2.7,输入python 、 python3、 python3.6依次得到如下版本:


    修改python命令默认python3.6

    步骤1: 查看python命令指向:

    ls -l /usr/bin | grep python 
    

    可以看到python命令指向python2.7版本

    步骤2: 删除原有python软连接

    rm /usr/bin/python 
    

    步骤3: 建立python到python3.6新的软链接

    ln -s /usr/bin/python3.6 /usr/bin/python 
    

    ubuntu 安装pip

    直接安装python3版本pip

    apt-get install python3-pip
    

    安装完成后,建立pip到pip3的软连接。

    ln -s /usr/bin/pip3 /usr/bin/pip 
    

    相关文章

      网友评论

        本文标题:Docker下的ubuntu 安装python3.6 及pip

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