我正在开发GAE django非rel应用程序。我正面临着与之相关的错误。
NotImplementedError:要使用tools.run(),必须安装g旗标库。请安装旗标或更好地切换到使用tools.run_flow()
为了解决这个错误,我下载了glags.py和gflags_validators.py,并将它们放在项目的根文件夹中。
通过上面的解,我得到了另一个错误。
EOFError at /pages
EOF when reading a line
Exception Value:
EOF when reading a line
Exception Location: D:\jatin\Project\GAE_django\non-rel_django1.5\oauth2client\old_run.py in run, line 149
发布于 2014-11-10 02:33:05
尝尝这个
pip install python-gflags
或
sudo easy_install --upgrade python-gflags
https://stackoverflow.com/questions/25745496
复制相似问题