无法执行python脚本,权限被拒绝?

时间:2012-03-07 12:32:29

标签: python

我正在尝试使用“appcelerator”编译项目(跨平台开发用于iphone / android)。只是评估它。它似乎运行一些python脚本来进行构建,但无法使其工作(并且没有在帮助论坛上的任何地方)。看起来像权限错误,但我无法弄清楚。我想在这里试试这是python中熟悉的事情:

Exception occured while building project:
Traceback (most recent call last):
   File "/Library/Application Support/Titanium/mobilesdk/osx/1.8.2/android/builder.py", line 2089, in <module>
     s.build_and_run(True, avd_id, device_args=device_args)
   File "/Library/Application Support/Titanium/mobilesdk/osx/1.8.2/android/builder.py", line 1934, in build_and_run
     run_result = run.run(dex_args, warning_regex=r'warning: ')
   File "/Library/Application Support/Titanium/mobilesdk/osx/1.8.2/android/run.py", line 36, in run
     process = subprocess.Popen(args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
   File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py", line 595, in __init__
     errread, errwrite)
   File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/subprocess.py", line 1106, in _execute_child
     raise child_exception
 OSError: [Errno 13] Permission denied

我已将“run.py”和“builder.py”的权限设置为777.“subprocess.py”文件也是777.我仍然收到权限被拒绝错误。有什么明显的东西我在这里不见了吗?在OS 10.6上我是管理员用户。

由于

1 个答案:

答案 0 :(得分:3)

问题不在你提到的任何python文件中,而是在subprocess.Popen语句应该执行的任何命令中。

要解决问题,您可以尝试使用pdb来调试问题,或者只需编辑run.py并添加:

print args

subprocess.Popen之前找出没有足够权限的命令。