0
Google Sheets APIを使用する基本的なPython 3スクリプトを書きました。 Python 3(Arch)にデフォルト設定されているシステムで動作します。私はUbuntu 14.04システムで同じスクリプトを実行しようとしていますが、apiclientライブラリを読み込めません。私はお勧め pip install --upgrade google-api-python-client
でインストールしかし、私は唯一の私が何を観測しています。ここGoogleapiclientとpython3
のpython 2にライブラリをロードすることができます気づいた:
~ $ python
Python 2.7.6 (default, Oct 26 2016, 20:30:19)
[GCC 4.8.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from googleapiclient import discovery
>>> quit()
~ $ python3
Python 3.4.3 (default, Nov 17 2016, 01:08:31)
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from googleapiclient import discovery
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'googleapiclient'
任意のアドバイスはありますか?