企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# Python3安装 进入Python[官网](https://www.python.org/) 根据操作系统进行下载选择 ![](https://img.kancloud.cn/81/5a/815ae45406d1394a9068333f58794f94_1002x705.png) 根据 自己电脑位数下载 ![](https://img.kancloud.cn/5b/eb/5bebcec71a4721e020c81d83215cdebc_637x310.png) 下载后会得到如下文件 ![](https://img.kancloud.cn/55/62/5562da1311e481085a96676158a747ca_630x172.png) 双击该文件进行安装 点击`customize installation` ![](https://img.kancloud.cn/35/3a/353ac97c2fe71d9e674c2f79006db63a_670x412.png) 直接`next` ![](https://img.kancloud.cn/a9/b3/a9b3fb13c99c2b92ec087b63fc6169f6_670x412.png) 选择`advanced options` ![](https://img.kancloud.cn/fc/61/fc611535929d829be43562accb6e3b1d_670x412.png) 然后点击`install`进行安装 ### 找到Python安装目录 在开始处输入idle ![](https://img.kancloud.cn/d4/a8/d4a86078f601356ee297800cac732262_417x655.png) 鼠标右键 打开文件位置 ![](https://img.kancloud.cn/d0/42/d042b6c9641ab696e4f2d8d7dad44825_543x359.png) ### 检查Python的环境变量 在dos界面输入命令`python -V`注意V需要**大写** ![](https://img.kancloud.cn/7d/de/7dde7513860e1a3cf9d69a12d572fcfc_609x353.png) 注意如果提示Python不是内部或外部命令也不是可运行的程序则需要添加环境变量至Path 先找到Python的安装目录,在dos界面输入如下命令 `setx "Path" "Python的安装目录;%Path%;" /m` 比如我的Python安装在C:\\Python中,那么我的命令则是 `setx "Path" "C:\Python;%Path%;" /m`