![如何在 Windows 10 中安装 Python 的“google”模块?](https://linux22.com/image/1558763/%E5%A6%82%E4%BD%95%E5%9C%A8%20Windows%2010%20%E4%B8%AD%E5%AE%89%E8%A3%85%20Python%20%E7%9A%84%E2%80%9Cgoogle%E2%80%9D%E6%A8%A1%E5%9D%97%EF%BC%9F.png)
我很难google
在我的 Python 3.6.4 上安装该模块,或者实际上让 Python 看到它:
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'
我应该如何安装该google
模块以便 Python 可以看到它?