尝试通过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
答案 0 :(得分:0)
此答案基于假设,但希望对您有所帮助。
我认为您已经在计算机上的C:\Programs Files
之类的目录中安装了Python。在django-shortcuts中,直接在命令行(here)中使用sys.executable
来调用python,Windows将第一部分作为可执行文件一直调用到第一位。
您有不同的解决方法,包括:
'"%s"' % sys.executable
%(python)s
更改为"%(python)s"