详解如何在 Linux 中安装最新的 Python 3.6 版本
发布网友
发布时间:2022-04-19 15:22
我来回答
共1个回答
热心网友
时间:2022-04-07 07:13
在 CentOS 7 中安装 Python 之前,请确保系统中已经有了所有必要的开发依赖:
# yum -y groupinstall development
# yum -y install zlib-devel
在 Debian 中,我们需要安装 gcc、make 和 zlib 压缩/解压缩库:
# aptitude -y install gcc make zlib1g-dev
运行下面的命令来安装 Python 3.6:
# wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz
# tar xJf Python-3.6.0.tar.xz
# cd Python-3.6.0
# ./configure
# make && make install
这可能需要花费一些时间。安装完成以后,使用 which 命令来查看主要二进制代码的位置:
# which python3
# python3 -V
上面的命令的输出应该和这相似:
要退出 Python 提示符,只需输入:
quit()
#或
exit()
然后按回车键。
恭喜!Python 3.6 已经安装在你的系统上了。
在 Linux 中安装 Python IDLE
Python IDLE 是一个基于 GUI 的 Python 工具。如果你想安装 Python IDLE,请安装叫做 idle(Debian)或 python-tools(CentOS)的包:
# apt-get install idle [On Debian]
# yum install python-tools [On CentOS]
输入下面的命令启动 Python IDLE:
# idle