Deep Learning & Machine Learning/Colab

NotImplementedError: A UTF-8 locale is required. Got ANSI_X3.4-1968 해결방법

webnautes 2024. 2. 19. 23:04
반응형

코랩 Colab에서 패키지 설치할 때 다음 에러 발생시 해결하는 방법입니다.

 

NotImplementedError: A UTF-8 locale is required. Got ANSI_X3.4-1968



최초작성 2024. 2. 19



다음처럼 pip 앞에 두줄을 추가로 코드셀에 적으면 패키지를 문제없이 설치할 수 있습니다. 

 

import locale
locale.getpreferredencoding = lambda: "UTF-8"

!pip install transformers==4.28.1 




참고

https://github.com/googlecolab/colabtools/issues/3409 









반응형