1

установлен:Получение ImportError даже если модуль установлен

pip install google-python-cloud-debugger 
Requirement already satisfied (use --upgrade to upgrade): google-python-cloud-debugger in /usr/local/lib/python2.7/dist-packages 
Requirement already satisfied (use --upgrade to upgrade): google-api-python-client in /usr/local/lib/python2.7/dist-packages (from google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): six<2,>=1.6.1 in /usr/local/lib/python2.7/dist-packages (from google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): httplib2<1,>=0.8 in /usr/local/lib/python2.7/dist-packages (from google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): oauth2client in /usr/local/lib/python2.7/dist-packages (from google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): uritemplate<1,>=0.6 in /usr/local/lib/python2.7/dist-packages (from google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): pyasn1>=0.1.7 in /usr/local/lib/python2.7/dist-packages (from oauth2client->google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): pyasn1-modules>=0.0.5 in /usr/local/lib/python2.7/dist-packages (from oauth2client->google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): rsa>=3.1.4 in /usr/local/lib/python2.7/dist-packages (from oauth2client->google-api-python-client->google-python-cloud-debugger) 
Requirement already satisfied (use --upgrade to upgrade): simplejson>=2.5.0 in /usr/local/lib/python2.7/dist-packages (from uritemplate<1,>=0.6->google-api-python-client->google-python-cloud-debugger) 

но при попытке импортировать, я получаю ImportError: No module named uritemplate. StackTrace является: googleapiclient/discovery.py", line 53, in <module>

является uritemplate установлена ​​вещь:

pip install uritemplate 
Requirement already satisfied (use --upgrade to upgrade): uritemplate in /usr/local/lib/python2.7/dist-packages 
Requirement already satisfied (use --upgrade to upgrade): simplejson>=2.5.0 in /usr/local/lib/python2.7/dist-packages (from uritemplate) 

прямой импорт uritemplate также не работает ..

ответ

0

У меня такая же проблема. uritemplate был загружен в систему. после решения этого вопроса, то же самое касается oauth2client , который мне пришлось обновить. скачан с https://github.com/google/oauth2client

поэтому я загрузил обновленную версию в свой проецируемый и добавил ее путь.

0

Вы вызова python2.7 или python3 при импорте облачный отладчик или uritemplate напрямую?

$ python2.7 
>>> import uritemplate 
>>> 
$ python3 
>>> import uritemplate 
Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
ImportError: No module named uritemplate 

Обратите внимание: облачный отладчик (и uritemplate) предназначен для python 2.7.

 Смежные вопросы

  • Нет связанных вопросов^_^