我正在关注本教程 https://developers.google.com/bigquery/articles/dashboard#downloadinstalllibraries
他们在这里说
cd source/
enable-app-engine-project hellodashboard/
这会将大约 60 个文件复制到项目目录中。但我只看到复制了大约 10 个文件。项目目录中的 oauth2client 文件夹只有__init__.py
文件,因为我正在使用
from oauth2client.appengine import oauth2decorator_from_clientsecrets
当我运行我的程序时,它显示一个错误
from oauth2client.appengine import oauth2decorator_from_clientsecrets
ImportError: No module named appengine
所以我手动将所有文件从 oauth2client zip 复制到项目 oauth2client 目录。现在,当我运行我的程序时,它没有显示任何错误并且似乎运行良好。是 enable-app-engine-project 命令弄乱了一些东西还是我做错了什么。