1

ラズベリーパイのフォルダにあるテキストファイルをアップロードしたいです。このために、次のコードを使用しました。

from pydrive.drive import GoogleDrive
drive = GoogleDrive(gauth)

file1 = drive.CreateFile({'title': 'Hello.txt'})  # Create GoogleDriveFile instance with title 'Hello.txt'.
file1.SetContentString('Hello World!') # Set content of the file from given string.
file1.Upload()

このコードをラズベリー pi で実行すると、次のエラーが発生します。

 Traceback (most recent call last):   File "uploadfile3.py", line 1, in <module>
    from pydrive.drive import GoogleDrive   File "/usr/local/lib/python2.7/dist-packages/pydrive/drive.py", line 2, in <module>
    from .files import GoogleDriveFile   File "/usr/local/lib/python2.7/dist-packages/pydrive/files.py", line 12, in <module>
    from .auth import LoadAuth   File "/usr/local/lib/python2.7/dist-packages/pydrive/auth.py", line 9, in <module>
    from oauth2client.service_account import ServiceAccountCredentials   File "/usr/local/lib/python2.7/dist-packages/oauth2client/service_account.py", line 26, in <module>
    from oauth2client import crypt   File "/usr/local/lib/python2.7/dist-packages/oauth2client/crypt.py", line 23, in <module>
    from oauth2client import _pure_python_crypt   File "/usr/local/lib/python2.7/dist-packages/oauth2client/_pure_python_crypt.py", line 24, in <module>
    from pyasn1_modules.rfc2459 import Certificate   File "/usr/local/lib/python2.7/dist-packages/pyasn1_modules/rfc2459.py", line 20, in <module>
    from pyasn1.type import opentype ImportError: cannot import name opentype

このエラーを取り除くのを手伝ってください。テキスト ファイルをアップロードする他の方法がある場合は、それを手伝ってください。

4

1 に答える 1