我在 localhost 和 ceemee11111.appspot.com 上运行了留言簿应用程序,但是当我尝试从 python 运行 remote-api 时,找不到一些模块。我希望从 python 运行与从谷歌运行相同的模块。
所以我已经安装了 pip 应用程序并尝试运行
$ pip freeze -E [env1] > requirements.txt
在 google /lib 中并得到“拒绝访问”错误。如果有人有这方面的经验,我将不胜感激。根据我的阅读,我运行
$ pip freeze -E [env1] > requirements.txt
在 google /lib 目录中,然后运行
$ pip install -E [env2] -r /path/to/requirements.txt
在 python /lib 目录中。