编译错误

时间:2013-05-10 17:55:53

标签: module compilation compiler-errors python-3.3

我正在尝试创建一个.pyc文件,并且没有真正的方法来实现它。

我有这个:

Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
py_compile.compile('Project')
File "C:\Python33\lib\py_compile.py", line 111, in compile
with tokenize.open(file) as f:
File "C:\Python33\lib\tokenize.py", line 428, in open
buffer = builtins.open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: 'Project'

PYTHONPATH现在在许多地方,但似乎没有发生。有人可以给我一个确定的方法来编译.py文件,这样我就不用下载了。

这是给我错误的代码:

import py_compile
py_compile.compile('Project')

我已经尝试过py_compile和compileall。也许我做错了什么。有人可以帮忙吗?

0 个答案:

没有答案