这一篇是环境准备,主要是说明如何安装Python和运行交互式环境。
安装和运行交互式解析器
如果你使用的是MacOS和Linux/UNIX机器的话,大部分都默认安装了Python,不过需要注意的是系统自带的Python都是比较老的Python2.x。我们可以在提示符下输入python命令进行验证是否安装。
linux系统信息:
[zpl@localhost root]$ cat /etc/os-release
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
[zpl@localhost root]$
验证是否安装python:
[zpl@localhost root]$ python
Python 2.7.5 (default, Oct 30 2018, 23:45:53)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
我么可以看出,在我这台CentoOS上默认安装的是python2.7。
如果没有安装python,可以直接用下载命令来安装Python:
$ apt-get install python
如果是Windows机器,需要我们去Python官网下载安装包安装。下载好了之后解压,然后一直点击“下一步”即可安装完成,这里就不赘述了。安装好了可以输入命令验证一下是否可以正常运行:
C:\Users\TDH>python
Python 3.10.3 (tags/v3.10.3:a342a49, Mar 16 2022, 12:53:06) [MSC v.1929 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:02python快速上手 - Python技术站