ubuntu中如何安装python3.6

Posted 学会思考

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu中如何安装python3.6相关的知识,希望对你有一定的参考价值。

此处使用命令行方式来安装Python3.6:

  1. sudo wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz 
  2. sudo tar xJf Python-3.6.0.tar.xz
  3. sudo cd Python-3.6.0 
  4. sudo ./configure 
  5. sudo make && make install 

检查是否安装成功,运行以下命令:

#which python3

输出:#/usr/local/bin/python3

#python3 -V

输出:Python 3.6.0

 

对于permission denied解决方法:

sudo chmod a+x /xxx/xxx

Then try to clean the make and do it again:
sudo make clean

sudo ./configure

sudo make && make install


以上是关于ubuntu中如何安装python3.6的主要内容,如果未能解决你的问题,请参考以下文章

关于Ubuntu下各个Python版本的管理之为每个单独的Python安装pip

在 Ubuntu 18.04 上为 python 安装 mysqlclient 时出错

【Ubuntu16.04】安装python3.6

ubuntu16.04 下安装配置python3.6

ubuntu 16.04 安装 python3.6

ubuntu16.04 安装 python3.6, 并创建虚拟环境(使用python3.6)