我在Ubuntu的/ opt目录下安装了Google App Engine。 在创建示例Pydev Google App Engine项目后,我右键单击src文件夹并尝试运行它。
我收到以下错误:
/opt/python2.5/bin/python2.5: can't open file '/opt/google_appengine/dev_appserver.py': [Errno 13] Permission denied
关于如何赋予eclipse权限以运行此任何想法?
drwxrwxr-x 8 root root 4096 2011-03-24 23:38 google_appengine
-r-xr-x--- 1 root root 2387 2011-03-24 23:38 appcfg.py
-r-xr-x--- 1 root root 156 2011-03-24 23:38 BUGS
-r-xr-x--- 1 root root 2387 2011-03-24 23:38 bulkload_client.py
-r-xr-x--- 1 root root 2387 2011-03-24 23:38 bulkloader.py
drwxrwxr-x 3 root root 4096 2011-03-24 23:38 demos
-r-xr-x--- 1 root root 2387 2011-03-24 23:38 dev_appserver.py
drwxrwxr-x 6 root root 4096 2011-04-22 22:13 google
drwxrwxr-x 12 root root 4096 2011-04-07 23:23 lib
-r-xr-x--- 1 root root 5922 2011-03-24 23:38 LICENSE
drwxrwxr-x 2 root root 4096 2011-03-24 23:38 new_project_template
-r-xr-x--- 1 root root 6086 2011-03-24 23:38 README
-r-xr-x--- 1 root root 44626 2011-03-24 23:38 RELEASE_NOTES
-r-xr-x--- 1 root root 2387 2011-03-24 23:38 remote_api_shell.py
drwxrwxr-x 2 root root 4096 2011-03-24 23:38 templates
drwxrwxr-x 2 root root 4096 2011-03-24 23:38 tools
-r-xr-x--- 1 root root 59 2011-03-24 23:38 VERSION
drwxrwxr-x 8 root root 4096 2011-03-24 23:38 .
drwxr-xr-x 7 root root 4096 2011-04-22 20:15 ..
-r-xr-x--x 1 root root 2387 2011-03-24 23:38 appcfg.py
-r-xr-x--x 1 root root 156 2011-03-24 23:38 BUGS
-r-xr-x--x 1 root root 2387 2011-03-24 23:38 bulkload_client.py
-r-xr-x--x 1 root root 2387 2011-03-24 23:38 bulkloader.py
drwxrwxr-x 3 root root 4096 2011-03-24 23:38 demos
-r-xr-x--x 1 root root 2387 2011-03-24 23:38 dev_appserver.py
drwxrwxr-x 6 root root 4096 2011-04-22 22:13 google
drwxrwxr-x 12 root root 4096 2011-04-07 23:23 lib
-r-xr-x--x 1 root root 5922 2011-03-24 23:38 LICENSE
drwxrwxr-x 2 root root 4096 2011-03-24 23:38 new_project_template
-r-xr-x--x 1 root root 6086 2011-03-24 23:38 README
-r-xr-x--x 1 root root 44626 2011-03-24 23:38 RELEASE_NOTES
-r-xr-x--x 1 root root 2387 2011-03-24 23:38 remote_api_shell.py
drwxrwxr-x 2 root root 4096 2011-03-24 23:38 templates
drwxrwxr-x 2 root root 4096 2011-03-24 23:38 tools
-r-xr-x--x 1 root root 59 2011-03-24 23:38 VERSION
谢谢
答案 0 :(得分:1)
看起来您在主google_appengine目录上执行了chmod +x
,但未递归。在目录上尝试chmod -R +rx
。