Python-环境搭建

2021/8/8 9:06:22

本文主要是介绍Python-环境搭建,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Python环境搭建

Python3.8.5 下载

Python官网:https://www.Python.org

Python官方文档地址:https://docs.Python.org/zh-cn/3/

Python官网 Windows下载地址:https://www.Python.org/downloads/windows/

Python官网Windows3.8.5版本下载地址:https://www.Python.org/ftp/Python/3.8.5/Python-3.8.5-amd64.exe

Python3.8.5 安装

下载后安装勾选加入环境变量,默认下一步皆可安装成功。

运行Python

查看版本号

C:\Users\admin>Python -V
Python 3.8.5

C:\Users\admin>Python --version
Python 3.8.5

进入Python交互模式

进入Python交互模式下默认打印版本和版权信息等,如果想去除可加上-q参数

C:\Users\admin>Python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
C:\Users\admin>Python
Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>


这篇关于Python-环境搭建的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程