标签: python-3.x oauth-2.0
我在导入oauth2软件包时遇到问题。在init.py文件中,此行from ._compat import PY3的执行存在问题。我不知道为什么安装和运行oauth2太麻烦了
from ._compat import PY3
答案 0 :(得分:0)
这对我有用: from oauth2._compat import PY3 您收到的错误提示您正在尝试导入__main __。compat而不是oauth2._compat
from oauth2._compat import PY3