我正在尝试开始使用Google表格。我在Ubuntu 19.04上使用PyCharm,并且项目编译器设置为Python 3.7。
我安装了https://developers.google.com/sheets/api/quickstart/python所示的模块,适用于Python 2和Python 3:
pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib
pip3 install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib
然后,我运行该页面上为quickstart.py
提供的代码。但是,它找不到任何库googleapiclient
,google_auth_oauthlib
和google
。
我还发现了安装其他一些库的建议:
sudo apt-get install python-googleapi python-oauth2client
sudo apt-get install python3-googleapi python3-oauth2client
让我知道我是否可以更清楚地了解任何事情,或者提供其他任何相关信息。