본문 바로가기
개발/에러해결

URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

by amkorousagi 2022. 11. 11.

에러 내용


import seaborn as sns

titanic = sns.load_dataset('titanic')

 

위 kaggle seaborn load_dataset 실행 시 다음의 오류가 발생합니다.

URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

URLError: <urlopen error [Errno -3] Temporary failure in name resolution>

 

에러 원인


 

kaggle 기본 설정에서는 인터넷 연결이 되어 있지 않아 seaborn의 load_dataset이 에러를 출력합니다.

해결 방법


internet on

코드 작성 시 바로 옆에 있는 바의 setting을 열고 internet 토글을 클릭하여 인터넷을 연결합니다.

 

참고 자료


 

 

Product Update: Enable Internet Access on Kernels | Data Science and Machine Learning

Product Update: Enable Internet Access on Kernels.

www.kaggle.com

 

댓글