-1

我只想打开一个python文件。我进入 cmd ,将路径设置为C:\python33并输入,python test.py但出现此错误:

python: can't open file 'test.py": [Errno 2] No such file or directory

但是有一个文件。它应该在 python33 文件中吗?因为它是现在。我不知道我做错了什么。

第二个问题是,当我设置它的路径时,C:\python33它删除了我的旧路径。这是一个问题吗?如何找出旧路径是什么以及如何拥有多个路径?(你可以说我对这一切都很陌生,只是想了解它。

4

1 回答 1

1

Try doing:

SET PATH=%PATH%;C:\Python33

Then change to the directory where test.py is, doing:

cd C:\Python33 # or somewhere else

and execute python test.py

于 2013-06-11T17:36:37.117 回答