py2app错误:“无法复制'%s':不存在或不存在常规文件”

时间:2009-08-05 22:30:05

标签: python macos py2app

我正在尝试用py2app打包我的Python应用程序。我正在运行我创建的setup.py,我收到此错误:

  File "C:\Python26\lib\distutils\file_util.py", line 119, in copy_file
    "can't copy '%s': doesn't exist or not a regular file" % src
DistutilsFileError: can't copy '--dist-dir': doesn't exist or not a regular file

> c:\python26\lib\distutils\file_util.py(119)copy_file()
-> "can't copy '%s': doesn't exist or not a regular file" % src

有没有人知道我应该做什么?

1 个答案:

答案 0 :(得分:2)

看起来,由于某种原因,它试图将命令行开关--dist-dir解释为文件名。也许实际的开关被命名为别的东西,你输错了吗?或者可能需要以不同的顺序指定?