ubuntu16.04lts中源码安装python3.6.0的方法教程

前提

官网上提供了 mac 和 windows 上的安装包和 linux 上安装需要的源码。

下载地址如下:

https://www.python.org/downloads/release/python-360/

安装

wget https://www.python.org/ftp/python/3.6.0/python-3.6.0.tar.xz
xz -d python-3.6.0.tar.xz
tar -xvf python-3.6.0.tar
cd python-3.6.0
./configure
make
sudo make install

测试:

$ python3.6 –version
python 3.6.0

测试几个新的语法特性:

1.

# formatted string literals
>>> name = ‘ray’
>>> f”hello {name}.”
‘hello ray.’

效果相当于

>>> name = ‘ray’
>>> “hello {name}.”.format(name=name)
‘hello ray.’

2.

# underscores in numeric literals
>>> a = 1_000_000_000_000_000
>>> a
1000000000000000
>>> ‘{:_}’.format(1000000)
‘1_000_000”1_000_000’

3.

# enum.auto
>>> from enum import enum, auto
>>> class color(enum):
… red = auto()
… blue = auto()
… green = auto()

>>> list(color)
[, , ]

tips

第一次编译安装之后,有可能会发现输入python3.6 之后,方向键失效。

原因是 readline 库没有安装。

解决方式:

安装 readline 库

sudo apt-get install libreadline-dev

安装之后,再将 python 重新编译安装一次。

cd python-3.6.0
./configure
make
sudo make install

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

更多ubuntu 16.04 lts中源码安装python 3.6.0的方法教程相关文章请关注php中文网!

Posted in 未分类

发表评论