본문 바로가기
데이터 분석/Python, R 문법

Colab ↔ 구글 드라이브 연결 방법

by 장찐 2021. 10. 25.
from google.colab import drive
ROOT = "/content/drive"
print(ROOT)
drive.mount(ROOT)

#드라이브 경로로 이동
%cd drive/'My Drive'/'Colab Notebooks'/'소상공인'

#파일 목록 
%ls

 

 

댓글