django-shortcuts命令提示符错误“ C:\ Program”未被识别为内部或外部命令,可操作程序或批处理文件

时间:2018-11-23 10:05:41

标签: django command-line

尝试通过Django快捷键https://github.com/jgorset/django-shortcuts运行“ django r”命令

获取错误'C:\Program' is not recognized as an internal or external command, operable program or batch file

有什么办法解决此问题吗? 找到了相同错误“ C:\ Program”的一些问题。不知道对我的情况有什么帮助。 Command Prompt Error 'C:\Program' is not recognized as an internal or external command, operable program or batch file

1 个答案:

答案 0 :(得分:0)

此答案基于假设,但希望对您有所帮助。

我认为您已经在计算机上的C:\Programs Files之类的目录中安装了Python。在django-shortcuts中,直接在命令行(here)中使用sys.executable来调用python,Windows将第一部分作为可执行文件一直调用到第一位。 您有不同的解决方法,包括:

  • 使用'"%s"' % sys.executable
  • %(python)s更改为"%(python)s"
  • 将Python重新安装到另一个目录中,路径中没有空格...