Python之安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之安装相关的知识,希望对你有一定的参考价值。
在Linux系统中,Python通常是自带的,但是如果要使用高版本则需要自行安装,下面讲下Python3.6的源码安装。
yum -y groupinstall development
yum -y install zlib-devel
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz
tar -zxf Python-3.6.0.tgz
cd Python-3.6.0
./configure
make
make install
[[email protected] ~]# python3 -V
Python 3.6.0
本文出自 “一万年太久,只争朝夕” 博客,请务必保留此出处http://zengwj1949.blog.51cto.com/10747365/1930592
以上是关于Python之安装的主要内容,如果未能解决你的问题,请参考以下文章