答案 0 :(得分:2)
答案 1 :(得分:0)
我发现使用GAE SDK的最简单方法是安装Mac端口(http://www.macports.org/)并从那里安装不同版本的python(2.5和2.7)。
安装完成后:
$ sudo port install python25 # To install python 2.5
$ sudo port install python27 # To install python 2.7
然后从Googleappenginelauncher菜单中打开Preferences并在Python路径字段中输入/opt/local/bin/python2.5或/opt/local/bin/python2.7。
例如,要安装PIL或lxml,只需在shell中输入以下命令:
# For PIL and python 2.7
$ sudo port install py27-pil
# For Lxml and python 2.7
$ sudo port install py27-lxml