1 python简介与安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1 python简介与安装相关的知识,希望对你有一定的参考价值。

在学习一门语言之前,咱们先了解为什么我们要学它。


python是一个脚本语言,语言简单,兼容各版本系统,学习这门语言将对以后的运维日常工作提供极大的便利。


1.1 Linux 下 python 安装

首先从官网下载所需要的 python 版本,解压后直接编译安装即可,

[[email protected] /]# tar -zxf Python-2.7.11.tgz

[[email protected] /]# cd Python-2.7.11

[[email protected] /]# ./configure && make && make install


然后我们可以在安装目录查看到 Python 2.7.11 版本已经安装

[[email protected] usr]# /usr/local/bin/python

Python 2.7.11 (default, Jan  2 2017, 12:16:39) 

[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> exit()


但是我们系统自带版本为 python 2.6.6,我们如何替换成编译好的 python 2.7.11 呢

[[email protected] usr]# python

Python 2.6.6 (r266:84292, Nov 22 2013, 12:16:22) 

[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> 

>>> exit()


我们先进入系统 python 所在目录,把启动文件备份下,然后删除

[[email protected] usr]# cd ..

[[email protected] /]# cp /usr/bin/python /usr/bin/python.bak.2017

[[email protected] /]# rm /usr/bin/python

rm: remove regular file `/usr/bin/python‘? y


接着我们把编译好的 python 2.7.11 版本的启动文件做个软连接到当前目录下,之后我们再查看python 版本时,就变成我们编译的版本了

[[email protected] /]# ln -s /usr/local/bin/python2.7 /usr/bin/python

[[email protected] /]# python

Python 2.7.11 (default, Jan  2 2017, 12:16:39) 

[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> 

>>> exit()


1.2 Windows 下 python 安装

从官网下载安装包添加环境变量即可。


以上是关于1 python简介与安装的主要内容,如果未能解决你的问题,请参考以下文章

python基础——简介与安装

OpenCV-Python1.OpenCV的简介配置文档与示例

python 虚拟环境安装与命令简介

python学习之简介与环境安装

Python的简介与入门

零基础学PythonDay1 Python简介与环境安装