躓いていること
下記コードを実行すると「ModuleNotFoundError: No module named 'googleapiclient'」エラーになります。
また、下記の記事を参考にコマンドプロンプト上で”pip3 install --upgrade google-api-python-client”を実行したのですが、改善されず同じエラーが出力されます。
参考サイト
https://note.mokuzine.net/python-import-error-no-module-named-apiclient-discovery/
有識者の方ご教授の程よろしくお願いします。
from __future__ import print_function import datetime import pickle import os.path from googleapiclient.discovery import build from google_auth_oauthlib.flow import InstalledAppFlow from google.auth.transport.requests import Request
#実行環境
pythonのversion:3.7.6
OS:windows10
pythonの実行環境:コマンドプロンプト上でプログラムを実行
#追記
プログラムを実行したときのコマンドを以下に示す。
プログラム名は"quickstart.py"である。
python quickstart.py
python -c "import site; print (site.getsitepackages())"を実行した結果を以下に示す。
['C:', 'C:lib\site-packages']
pip3 show google-api-python-clientを実行した結果を以下に示す。
Name: google-api-python-client Version: 1.12.8 Summary: Google API Client Library for Python Home-page: https://github.com/googleapis/google-api-python-client/ Author: Google LLC Author-email: googleapis-packages@google.com License: Apache 2.0 Location: c:\users\ma\anaconda3\lib\site-packages Requires: google-auth-httplib2, six, google-api-core, httplib2, uritemplate, google-auth Required-by:
回答1件
あなたの回答
tips
プレビュー