LINUX平台Python安装(一)
安装python:
系统: Centos7 注释:
Centos7 一般多自带了python的版本2.7.5版本,由于python从2.x到3.x版本变动较大,并且3.x以上版本在很多语法上不兼容python2.4左右的版本,所以建议学习python的朋友们从2.7.5版本开始学习。
版本地址:
下载地址: 安装脚本:python_install.py#!/bin/bash#源码安装wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0b3.tgztar -zxvf Python-3.5.0b3.tgzcd ython-3.5.0b3#编译安装./configuremakemake install
安装pip(推荐安装) pip是一个包管理器,安装后方便之后框架和依赖包的安装使用。推荐安装。 安装脚本:python_pip.py
#!/bin/bashwget https://bootstrap.pypa.io/get-pip.pypython get-pip.py
启动python
[root@mn1 ~]# pythonpython-3.5. (default, Mar 16 2016, 15:06:21) [GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>>
这样我们就升级完成