Google Colab 사용법 정리

Google Colab 사용법 정리

  • colab 기초 사용법

Tutorial


  1. Colab에 접속한다.

  2. 새로운 python3.ipynb 파일을 만든 후 google drive mount를 한다.

    • 해당 코드를 실행하면 enter authorization code를 입력하라고 창이 뜬다.

      from google.colab import drive
      drive.mount('/content/gdrive')
  1. authorization code 받는 주소

  1. foo.txt 파일을 드라이브에 업로드

    with open('/content/gdrive/My Drive/foo.txt', 'w') as f:
        f.write('Hello Google Drive!')
    !cat /content/gdrive/My\ Drive/foo.txt

#

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×