docker에서 프로그램을 수행할 때
한국어 파일명은 언어 설정해주지 않으면 read 에러가 난다
warning: setlocale: LC_ALL: cannot change locale (ko_KR.utf8): No such file or directory
docker image 만들때
ENV LC_ALL ko_KR.UTF-8 설정이 먹히지않아서 직접 container로 들어가 설치해주었다
docker container에 들어가서
apt-get install --reinstall locales && dpkg-reconfigure locales
298 , 3 입력
vi ~/.bashrc
export LANGUAGE=ko_KR.UTF-8
export LANG=ko_KR.UTF-8
이렇게 하고 다시 이미지로 만들어서 사용했다
이렇게 하면 한국어명 파일도 문제없이 읽을 수 있다.
'Study > 머신러닝' 카테고리의 다른 글
Tensorflow CuDNN RNN vs 그냥 RNN 비교 (0) | 2020.05.12 |
---|---|
Bazel을 이용해 Tensorflow Lite 빌드해보기 (1) | 2020.03.31 |
Tensorflow2.0 / CUDA / Nvidia driver 호환 (0) | 2020.02.14 |
Keras에서 binary_crossentropy와 categorical_crossentropy 차이 (0) | 2019.12.16 |
Depthwise Separable Convolution 이해 (0) | 2019.12.05 |
댓글