質問編集履歴
3
修正依頼部分を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -57,3 +57,41 @@
|
|
57
57
|
python quickstart.py
|
58
58
|
|
59
59
|
```
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
python -c "import site; print (site.getsitepackages())"を実行した結果を以下に示す。
|
66
|
+
|
67
|
+
```ここに言語を入力
|
68
|
+
|
69
|
+
['C:', 'C:lib\site-packages']
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
pip3 show google-api-python-clientを実行した結果を以下に示す。
|
74
|
+
|
75
|
+
```ここに言語を入力
|
76
|
+
|
77
|
+
Name: google-api-python-client
|
78
|
+
|
79
|
+
Version: 1.12.8
|
80
|
+
|
81
|
+
Summary: Google API Client Library for Python
|
82
|
+
|
83
|
+
Home-page: https://github.com/googleapis/google-api-python-client/
|
84
|
+
|
85
|
+
Author: Google LLC
|
86
|
+
|
87
|
+
Author-email: googleapis-packages@google.com
|
88
|
+
|
89
|
+
License: Apache 2.0
|
90
|
+
|
91
|
+
Location: c:\users\ma\anaconda3\lib\site-packages
|
92
|
+
|
93
|
+
Requires: google-auth-httplib2, six, google-api-core, httplib2, uritemplate, google-auth
|
94
|
+
|
95
|
+
Required-by:
|
96
|
+
|
97
|
+
```
|
2
プログラム実行時のコマンドを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -43,3 +43,17 @@
|
|
43
43
|
OS:windows10
|
44
44
|
|
45
45
|
pythonの実行環境:コマンドプロンプト上でプログラムを実行
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
#追記
|
50
|
+
|
51
|
+
プログラムを実行したときのコマンドを以下に示す。
|
52
|
+
|
53
|
+
プログラム名は"quickstart.py"である。
|
54
|
+
|
55
|
+
```ここに言語を入力
|
56
|
+
|
57
|
+
python quickstart.py
|
58
|
+
|
59
|
+
```
|
1
参考サイトURLを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,6 +5,12 @@
|
|
5
5
|
下記コードを実行すると「ModuleNotFoundError: No module named 'googleapiclient'」エラーになります。
|
6
6
|
|
7
7
|
また、下記の記事を参考にコマンドプロンプト上で”pip3 install --upgrade google-api-python-client”を実行したのですが、改善されず同じエラーが出力されます。
|
8
|
+
|
9
|
+
参考サイト
|
10
|
+
|
11
|
+
https://note.mokuzine.net/python-import-error-no-module-named-apiclient-discovery/
|
12
|
+
|
13
|
+
|
8
14
|
|
9
15
|
有識者の方ご教授の程よろしくお願いします。
|
10
16
|
|