美文网首页
Install Python At CentOS7.2

Install Python At CentOS7.2

作者: waketzheng | 来源:发表于2017-05-15 00:12 被阅读0次
    wget https://www.python.org/ftp/python/2.7.13/Python-2.7.13.tgz
    tar -zxvf Python-2.7.13.tgz
    cd Python-2.7.13
    ./configure 
    make && make install
    
    wget https://www.python.org/ftp/python/3.5.3/Python-3.5.3.tgz
    tar -zxvf Python-3.5.3.tgz
    cd Python-3.5.3
    ./configure 
    make && make install
    
    wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz
    tar -zxvf Python-3.6.1.tgz
    cd Python-3.6.1
    ./configure --enable-shared
    make && make install
    

    相关文章

      网友评论

          本文标题:Install Python At CentOS7.2

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