Linux下安装Python3.6.4步骤
Posted 咖啡屋小罗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下安装Python3.6.4步骤相关的知识,希望对你有一定的参考价值。
使用 wget 命令下载 Python3.6.4 安装包
wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tgz
使用 tar 命令对 Python3.6.4 进行解压
tar zxvf Python-3.6.4.tgz
进入 Python-3.6.4 目录
cd Python-3.6.4
编译安装,执行 ./configure 脚本
./configure
执行安装
make
make install
安装成功之后,Python3.6 的安装目录在:/usr/local/lib/python3.6
使用 python3.6 命令,即可进入 python3.6 控制台
使用 pip3 来安装 Python3.6 的包
这样 Python3.6 就正式安装完成。
以上是关于Linux下安装Python3.6.4步骤的主要内容,如果未能解决你的问题,请参考以下文章