cannot run python script file using windows prompt

前端 未结 4 2043
既然无缘
既然无缘 2021-01-22 00:05

I am trying to run a python script from the windows command prompt, but I receive the following error message:

\"python: can\'t open file \'pacman.py\': [Errno 2] No

4条回答
  •  攒了一身酷
    2021-01-22 00:48

    python "C:\Users\Chris\Dropbox\edX\CS188x\search\pacman.py"

    or

    cd C:\Users\Chris\Dropbox\edX\CS188x\search\
    "c:\prorgam files (x86)\python27\python" pacman.py
    

提交回复
热议问题