Wie installiere ich das "google" -Modul für Python in Windows 10?

953
WoJ

Es fällt mir schwer, das googleModul auf meinem Python 3.6.4 zu installieren oder tatsächlich, wenn Python es sieht:

C:\WINDOWS\system32>python -V Python 3.6.5  C:\WINDOWS\system32>python -m pip install --upgrade google Requirement already up-to-date: google in c:\program files (x86)\python36-32\lib\site-packages (2.0.1)  C:\WINDOWS\system32>python -c "import google; print(google.__file__)" Traceback (most recent call last): File "<string>", line 1, in <module> ModuleNotFoundError: No module named 'google' 

Wie muss ich das googleModul installieren, damit es von Python sichtbar ist?

1
Was ist das Google-Modul, Google-Suche von Python? f14284 vor 6 Jahren 0
@ f14284: Es ist ein Modul, das die Authentifizierung und Manipulation der Google-APIs vereinfacht. Die [docs] (https://developers.google.com/api-client-library/python/) sind jedoch ein Durcheinander. Sie verweisen auf das Modul "google-api-python-client" und dann plötzlich auf das Modul "google" (das ist das Modul, das ich zu zähmen versuche). WoJ vor 6 Jahren 1
Haben Sie es mit dem anderen probiert (`google-api-python-client`)? Mawg vor 5 Jahren 0

0 Antworten auf die Frage