1 Python3
Python2和Python3有很多细节不同,这里我安的是Python3.10.2。
2 基于Windows10系统搭建Python编程环境
(1)检查是否已经安装了Python
在这个搜索框中搜索“cmd”->Enter进入 或者 Win键+R->输入cmd->Enter进入
在终端窗口输入Python->Enter,如果出现Python提示符,就说明已经安装了Python
(2)安装Windows Python
如果报错指出Python是无法识别的指令,就需要Windows Python安装程序:Download Python | Python.org
点击Download Python,会根据系统自动下载正确的安装程序。
运行安装程序,一定一定要选Add Python to PATH !!!
Install launcher for all users(recommended)和Add Python 3.10.4 to PATH都要选。
(3)启动Python终端会话(操作同(1),输出Python版本号就说明配置好了)
在这个搜索框中搜索“cmd”->Enter进入 或者 Win键+R->输入cmd->Enter进入
在终端窗口输入Python->Enter,如果出现Python提示符,就说明已经安装了Python
(4)在第(3)步中没有输出Python版本号
C:\>python
'python' is not recognized as an internal or external command,operable program or batch file.
以上这种情况需要告诉Windows如何找到刚才安装的Python版本。
在搜索框内搜索Python,打开文件存储位置,然后在终端窗口输入具体路径进行测试。示例:
C:\>C:\Python35\python
Python 3.5.0(v3.5.0:374f501f4567,Sep 13 2015,22:15:05)[MSC v.1900 32 bit(Intel)] on win32
Type "help","copyright","credits" or "license" for more information.
>>>
(5)在终端会话中运行Python
在Python会话中执行命令,输出“Hello Python world!”
3 基于Windows系统中从终端运行Python程序
在桌面创建hello_world.py,打开命令窗口运行该python程序。
(1)python基本命名规则
可以使用数字、字母、下划线,但数字不能打头,字母和下划线可以打头 |
使用_下划线代替空格 |
.py是python文件 |
(2)创建hello_world.py
print("Hello Python world!")
(3)在终端中运行该文件
终端命令 | 作用 |
cd | 切换文件夹 |
dir | 判断是否含有目标文件 |
python | 运行该文件 |
C:\>cd Desktop\python_work
C:\Desktop\python_work>dir
hello_world.py
C:\Desktop\python_work>python hello_world.py
Hello Python world!
4 Visual Studio2019环境配置
Visual Studio 2019 下Python的开发环境搭建_步履人生的博客-CSDN博客_vs2019python环境配置
Visual Studio运行Python程序(超级详细)_梦魇762459510的博客-CSDN博客_visualstudio怎么运行python
5 PyCharm环境配置
pycharm从安装到全副武装,学起来才嗖嗖的快,图片超多,因为过度详细!_川川菜鸟的博客-CSDN博客
pycharm 安装numpy包——超简单_咚哒哒er的博客-CSDN博客_pycharm安装numpy