1

我想連接google analytics API我的Jupyter筆記本電腦,當我嘗試安裝庫時出現錯誤。python3在Jupyter筆記本電腦上安裝模塊apiclient錯誤

import argparse 

from apiclient.discovery import build 
from oauth2client.service_account import ServiceAccountCredentials 

import httplib2 
from oauth2client import client 
from oauth2client import file 
from oauth2client import tools 

返回錯誤:

--------------------------------------------------------------------------- 
ModuleNotFoundError      Traceback (most recent call last) 
<ipython-input-4-4f9f833c28f1> in <module>() 
     1 import argparse 
     2 
----> 3 from apiclient.discovery import build 
     4 from oauth2client.service_account import ServiceAccountCredentials 
     5 

ModuleNotFoundError: No module named 'apiclient' 

我基本上是用this demo,它工作時,我跑了它在終端Python應用程序,但是當我在感動的代碼jupyter它開始拋出這個錯誤。

我已經試過:

pip3 install --upgrade google-api-python-client終端的一切是最新的

!pip3 install google-api-python-client在筆記本上,並返回一切都是最新的。

我使用anaconda進行本地jupyter安裝,如果這有什麼區別。任何想法如何解決這個或其他的事情來嘗試?

回答

0

試試這個另一種:

pip install --force-reinstall google-api-python-client 

如果它不工作,下載the zip here和剛解壓到您的App Engine的項目這一點。

+0

我會嘗試點,但我沒有運行App Engine項目。 Jupyter筆記本電腦在本地運行。 – NicoM

+0

好吧好吧,讓我知道如果工作 –

+0

沒有工作,也重新啓動筆記本電腦,以確保更改正在經歷,但仍然得到相同的錯誤。 – NicoM

相關問題