如何在 Ubuntu Server 12.10 上安装 Python3.3.5?

如何在 Ubuntu Server 12.10 上安装 Python3.3.5?

我需要 Ubuntu Server 12.10 上的 Python 3.3.5。

我想运行apt-get install python3但我不确定这是否会导致 Python3.3.5 版本的安装。

换句话说:如何通过命令行安装我需要的精确 Python 版本?

答案1

如果你想绝对确定你正在安装 python3.3.5,那么

  • 下载python3.3.5 源代码压缩包~/Downloads文件夹

  • 确保您已经python3从系统中删除

    sudo apt-get purge python3
    
  • 将目录更改为下载

    cd ~/Downloads
    
  • 解压文件

    tar -xvf Python-3.3.5.tgz
    
  • 将目录更改为 Python-3.3.5

    cd Python-3.3.5
    
  • 以 root 身份运行 install-sh

    sudo ./install-sh
    

这应该可以完成工作,希望它能起作用

相关内容