모하비에서 pyenv install 에러
모하비에서 pyenv를 사용해서 새 파이선 버전을 설치하려고 하면 아래와 같은 에러가 발생하게 된다. zipimport.ZipImportError: can’t decompress data; zlib not available 깃헙에 이슈가 보고되어있고 제보자의 해결책은 다음과 같다. 위 명령 실행 후 정상적으로 설치되는 것을 확인했다.
모하비에서 pyenv install 에러 Read More »
모하비에서 pyenv를 사용해서 새 파이선 버전을 설치하려고 하면 아래와 같은 에러가 발생하게 된다. zipimport.ZipImportError: can’t decompress data; zlib not available 깃헙에 이슈가 보고되어있고 제보자의 해결책은 다음과 같다. 위 명령 실행 후 정상적으로 설치되는 것을 확인했다.
모하비에서 pyenv install 에러 Read More »
sqlite3 데이터베이스에 파일 경로를 삽입하니 아래와 같은 에러가 발생했다. sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret 8-bit bytestrings (like text_factory = str). It is highly recommended that you instead just switch your application to Unicode strings. 문자열을 아래와 같이 utf-8로 디코딩하면 해결된다. ‘path_to_somewhere’.decode(‘utf-8’)
Python에서 sqlite로 파일경로 insert 시 인코딩 에러 Read More »