Python版本:3.12.1
4.1. Documentation: 需要安装Python的文档文件;
4.2. pip: 需要安装pip工具(绝大多数类型numpy、TensorFlow这些工具都需要这个安装工具进行安装);
4.3. tcl/tk and IDLE: 开发工具(参考:[【知乎】IDE 、IDLE 和 Tcl/Tk](https://zhuanlan.zhihu.com/p/105287623));
4.4. Python test suite: Python的测试工具。
6.1. Install Python 3.12 for all users: 安装Python给所有用户,如果你的电脑只有一个用户,可以不用勾选;
6.2. Associate files with Python(requires the 'py'launcher): 设置打开“.py”文件都使用Python进行打开;
6.3. Create shortcuts for installed applications: 创建桌面图标;
6.4. Add Python to environment variables: 添加Python到环境变量;
6.5. Precompile standard library: 安装预编译标准库(打包py的时候会打包成pyc,一般Python开发应用程序的时候才需要使用);
6.6. Download debugging symbols: 下载调试符号,使用vs开发的时候才需要使用;
6.7. Download debug binaries (requires VS 2017 or later): 下载调试的二进制文件,同上,使用vs开发的时候才需要使用;
9. 等待安装完成即可开始使用。