missing required arguments ["access_token must either be provided or exist at os.environ['GRADIENT_ACCESS_TOKEN']", "workspace_id must either be provided or exist at os.environ['GRADIENT_WORKSPACE_ID']"]
구글 코랩에서 ML 개발 시 api 키를 입력해야하는 경우가 있는데, 직접 코드를 입력해줘도 인식을 못하는 경우가 있음. 그럴 경우 환경 변수에 api키를 직접 할당하면 대부분 문제 해결
import os
os.environ['GRADIENT_ACCESS_TOKEN'] = "api_key"