Googleクラウドサーバーを利用する

1、

!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
!apt- get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfusefusion
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}
 

実行時のエラー:

E: パッケージ「python-software-properties」にはインストール候補がありません

解決策: 最初の 3 行を追加します。

!apt-get update
!apt-get upgrade
!apt-get install <パッケージ名>

!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
!apt- get update -qq 2>&1 > /dev/null
!apt-get -y install -qq google-drive-ocamlfusefusion
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}

Guess you like

Origin blog.csdn.net/bailixuance/article/details/85461878