pip install (2) 썸네일형 리스트형 UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 54: ordinal not in range(128) UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 54: ordinal not in range(128) 위의 문제는 locale이 안 맞아서 생기는 문제이다.아래와 같이 LC_ALL=C를 추가해주면 Locale을 영어로 기준잡고 pip install을 실행한다. $ export LC_ALL=C$ pip install numpy pip install error Cleaning up...Exception:Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/pip/basecommand.py", line 122, in main status = self.run(options, args) File "/usr/lib/python2.7/dist-packages/pip/commands/install.py", line 290, in run requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) File "/usr/lib/python2.7/dist-packages/pip/req.py", lin.. 이전 1 다음