3
私はVisual Studio 2015でapp_engineプロジェクトをデバッグしようとしています。名前をインポートできませんProtocolBuffer
私はピップでインストール:エンドポイント、protopc、AppEngineのとGoogle-API-のpython-クライアントLIBS
Traceback (most recent call last):
File "d:\users\someuser\documents\visual studio 2015\Projects\froomPy\froomPy\main.py", line 22, in <module>
from protorpc import remote
File "D:\Python27\lib\site-packages\protorpc\remote.py", line 117, in <module>
from . import protobuf
File "D:\Python27\lib\site-packages\protorpc\protobuf.py", line 41, in <module>
from .google_imports import ProtocolBuffer
ImportError: cannot import name ProtocolBuffer
がどのように処理することができます
import endpoints
from protorpc import message_types
from protorpc import messages
from protorpc import remote
は、これまでのところ私はこれらの行を持っていますこのエラーcannot import name ProtocolBuffer
またはpip google_imports
スタンドアロンスクリプトで 'endpoints'をインポートする必要がない限り、これは問題ありません。 '.google_imports'とは何ですか? –