码迷,mamicode.com
首页 > 编程语言 > 详细

ubuntu中如何安装python3.6

时间:2017-11-05 15:05:05      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:chm   安装   sql   http   perm   and   oca   local   https   

此处使用命令行方式来安装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

标签:chm   安装   sql   http   perm   and   oca   local   https   

原文地址:http://www.cnblogs.com/hujianglang/p/7787375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!