Gmail API - ModuleNotFoundError: No module named 'googleapiclient' - Python 3.7
Gmail API - ModuleNotFoundError: No module named 'googleapiclient' - Python 3.7
使用 Python 3.7 中的 Gmail API 检索电子邮件,我正在终端和 Pycharm 中测试代码,但我无法通过第 7 行:
#!/usr/bin/env python3
import pickle
import os.path
import email
import base64
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
我收到错误信息:
from googleapiclient.discovery import build
ModuleNotFoundError: No module named 'googleapiclient'
我知道还有其他关于同一问题的类似问题,但 none 的答案似乎对这种情况有所帮助。
请参阅下文了解我尝试过的事情以及可能有助于非法解决方案的信息。
1) 包似乎存在并且在预期的文件夹中。
user/PycharmProjects/projectname/venv/lib/python3.7/site-packages
__pycache__
apiclient
cachetools
cachetools-4.1.0.dist-info
dateutil
easy-install.pth
easy_install.py
google
google_api_python_client_py3-1.2-py3.7.egg-info
google_auth-1.14.2-py3.8-nspkg.pth
google_auth-1.14.2.dist-info
google_auth_httplib2-0.0.3.dist-info
google_auth_httplib2.py
httplib2
httplib2-0.17.3.dist-info
numpy
numpy-1.18.4.dist-info
oauth2client
pandas
pandas-1.0.3.dist-info
pip-10.0.1-py3.7.egg
pkg_resources
pyasn1
pyasn1-0.4.8.dist-info
pyasn1_modules
pyasn1_modules-0.2.8.dist-info
python_dateutil-2.8.1.dist-info
pytz
pytz-2020.1.dist-info
rsa
rsa-4.0.dist-info
setuptools
setuptools-46.1.3.dist-info
setuptools.pth
six-1.14.0.dist-info
six.py
uritemplate
2) 项目解释器似乎也是正确的:
3) 已尝试通过 PyCharm > 首选项重新安装模块
4) 我尝试了各种 pip 命令,包括以下命令;
pip install google-api-python-client
pip install googleapiclient
pip install --upgrade google-api-python-client
只是不明白问题是什么或如何解决,因此非常感谢您的指导和建议。
你没有'google-api-python-client'。你反而有 'google-api-python-client-py3'。前者必须在库列表中可用:
我已经安装了它:
pip install google-api-python-client
还要检查您是否 运行 代码与安装 google-api-python-client 的解释器相同。
使用 Python 3.7 中的 Gmail API 检索电子邮件,我正在终端和 Pycharm 中测试代码,但我无法通过第 7 行:
#!/usr/bin/env python3
import pickle
import os.path
import email
import base64
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
我收到错误信息:
from googleapiclient.discovery import build
ModuleNotFoundError: No module named 'googleapiclient'
我知道还有其他关于同一问题的类似问题,但 none 的答案似乎对这种情况有所帮助。 请参阅下文了解我尝试过的事情以及可能有助于非法解决方案的信息。
1) 包似乎存在并且在预期的文件夹中。
user/PycharmProjects/projectname/venv/lib/python3.7/site-packages
__pycache__
apiclient
cachetools
cachetools-4.1.0.dist-info
dateutil
easy-install.pth
easy_install.py
google
google_api_python_client_py3-1.2-py3.7.egg-info
google_auth-1.14.2-py3.8-nspkg.pth
google_auth-1.14.2.dist-info
google_auth_httplib2-0.0.3.dist-info
google_auth_httplib2.py
httplib2
httplib2-0.17.3.dist-info
numpy
numpy-1.18.4.dist-info
oauth2client
pandas
pandas-1.0.3.dist-info
pip-10.0.1-py3.7.egg
pkg_resources
pyasn1
pyasn1-0.4.8.dist-info
pyasn1_modules
pyasn1_modules-0.2.8.dist-info
python_dateutil-2.8.1.dist-info
pytz
pytz-2020.1.dist-info
rsa
rsa-4.0.dist-info
setuptools
setuptools-46.1.3.dist-info
setuptools.pth
six-1.14.0.dist-info
six.py
uritemplate
2) 项目解释器似乎也是正确的:
3) 已尝试通过 PyCharm > 首选项重新安装模块
4) 我尝试了各种 pip 命令,包括以下命令;
pip install google-api-python-client
pip install googleapiclient
pip install --upgrade google-api-python-client
只是不明白问题是什么或如何解决,因此非常感谢您的指导和建议。
你没有'google-api-python-client'。你反而有 'google-api-python-client-py3'。前者必须在库列表中可用:
我已经安装了它:
pip install google-api-python-client
还要检查您是否 运行 代码与安装 google-api-python-client 的解释器相同。