我无法让 Python 包gspread在 GAE 中工作。
我的项目在D:\Documents\Google Cloud\myapp
. 我安装gspread
使用:
c:\python27\python.exe setup.py install --home="D:\Documents\Google Cloud\myapp"
所有文件似乎都安装在D:\Documents\Google Cloud\myapp\lib\python
没有给我选择的情况下。实际上,我必须添加此路径PYTHONPATH
才能使 setup.py 正常运行。
如果我然后运行 Python,我可以import gspread
在解释器中。
但是,在 myapp 中,ImportError: No module named gspread
即使添加了长路径到sys.path
. My sys.path
at run-time 包含以下值:
'D:\\Documents\\Google Cloud\\myapp\\lib\\python'
'D:\\Documents\\Google Cloud\\myapp'
'D:\\Documents\\Google Cloud\\myapp\\lib'
让这个第三方模块工作需要什么?