파이썬 내에서 구글 맵을 사용하기 위한 Google API을 설치해보자!



prompt 창에서 > 내가 사용할 환경 접속 후 > google maps 모듈을 설치해 준다
1) 윈도우, 맥(intel) 명령어: conda install -c conda-forge googlemaps
2) 맥(M1) 명령어: pip install googlemaps
ex) conda 내 ds_study라는 가상환경에 설치하기
conda activate ds_study conda install -c conda-forge googlemaps
import googlemaps
gmaps_key = 'API_Key'
gmaps = googlemaps.Client(key = gmaps_key)