无法找到包google-drive-ocamlfuse,突然停止工作

rah*_*jia 2 google-drive-api medium.com-publishing-api jupyter google-colaboratory

我最近一直在使用colab,直到现在我使用google-drive-ocamlfuse将我的项目链接到我的驱动器,但不是它无法加载包.

!apt-get update -qq 2>&1 > /dev/null
!apt-get install -y -qq software-properties-common python-software-properties module-init-tools
!add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null
!add-apt-repository ppa:alessandro-strada/google-drive-ocamlfuse-beta
!apt-get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfuse fuse
Run Code Online (Sandbox Code Playgroud)

在这里得到参考表格 https://medium.com/@burakteke/tutorial-on-using-google-colab-for-kaggle-competition-620393c22821

直到昨天,它像一个魅力,但今天它突然停止工作.

小智 5

根据https://github.com/astrada/google-drive-ocamlfuse/issues/493#issuecomment-422380636,这应该可以正常工作

变化之间的构建amd64,arm64,armhf,i386https://launchpad.net/~alessandro-strada/+archive/ubuntu/ppa/+packages

!apt-get install -y -qq software-properties-common python-software-properties module-init-tools
!wget https://launchpad.net/~alessandro-strada/+archive/ubuntu/google-drive-ocamlfuse-beta/+build/15331130/+files/google-drive-ocamlfuse_0.7.0-0ubuntu1_amd64.deb
!dpkg -i google-drive-ocamlfuse_0.7.0-0ubuntu1_amd64.deb
!apt-get install -f
!apt-get -y install -qq fuse
from google.colab import auth
auth.authenticate_user()
from oauth2client.client import GoogleCredentials
creds = GoogleCredentials.get_application_default()
import getpass
!google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret} < /dev/null 2>&1 | grep URL
vcode = getpass.getpass()
!echo {vcode} | google-drive-ocamlfuse -headless -id={creds.client_id} -secret={creds.client_secret}
Run Code Online (Sandbox Code Playgroud)