当前位置: 代码迷 >> 综合 >> python3 is not recognized
  详细解决方案

python3 is not recognized

热度:75   发布时间:2023-11-26 19:47:36.0

在命令行输入python3 app.py的时候报错

'python3' is not recognized as an internal or external command,
operable program or batch file. 

原因是没有python3.exe文件,用 py替代python3就可以了,如果电脑上安装了多个python版本,用py -2或者py -3

  相关解决方案