Google ColabにGoogleドライブをマウントしたいのですが、このコマンドを使用してドライブをマウントします
from google.colab import drive
drive.mount('/content/drive/')
このエラーが出ます
ValueError Traceback (most recent call last)
<ipython-input-45-9667a744255b> in <module>()
1 from google.colab import drive
----> 2 drive.mount('content/drive/')
/usr/local/lib/python3.6/dist-packages/google/colab/drive.py in
mount(mountpoint, force_remount)
99 raise ValueError('Mountpoint must either be a directory or not exist')
100 if '/' in mountpoint and not _os.path.exists(_os.path.dirname(mountpoint)):
--> 101 raise ValueError('Mountpoint must be in a directory that exists')
102 except:
103 d.terminate(force=True)
ValueError: Mountpoint must be in a directory that exists
絶対パスでもマウントできない場合/content/drive
が使用された後、適切なディレクトリが存在することを確認し、
!mdkir -p /content/drive
最初にドライブをアンマウントするコマンドを実行します。
!fusermount -u drive
次に、もう一度実行してみてください。
from google.colab import drive
drive.mount('/content/drive')