Google App Engine: from six.moves import http_client no module named moves

后端 未结 3 409
伪装坚强ぢ
伪装坚强ぢ 2020-12-12 00:53

Okie dokie,

I\'m trying to get Google\'s Dialogflow python API working with Google App Engine, and I seem to be running into issues when I run the application. I hav

3条回答
  •  孤城傲影
    2020-12-12 01:33

    I had this problem too, make sure you "vendor in" all your dependencies, e.g.

    pip install -t lib six==1.9.0
    

    To resolve this error, I had to specify the version to match the one used in my local installation of python libraries added by the gcloud tool

提交回复
热议问题