Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ChatGPT
- 캐치카페
- SW Expert Academy
- Git
- 코로나19
- 프로그래머스 파이썬
- Baekjoon
- 데이콘
- 편스토랑
- 더현대서울 맛집
- 프로그래머스
- dacon
- leetcode
- github
- programmers
- Kaggle
- gs25
- 백준
- 맥북
- 우분투
- hackerrank
- PYTHON
- AI 경진대회
- 자연어처리
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- 파이썬
- Docker
- ubuntu
- 편스토랑 우승상품
Archives
- Today
- Total
솜씨좋은장씨
[Ubuntu] UserWarning: Could not import the lzma module. Your installed Python is incomplete. Attempting to use lzma compression will result in a RuntimeError. 해결방법 본문
유용한 정보/Linux | Ubuntu
[Ubuntu] UserWarning: Could not import the lzma module. Your installed Python is incomplete. Attempting to use lzma compression will result in a RuntimeError. 해결방법
솜씨좋은장씨 2021. 1. 13. 20:04728x90
반응형
UserWarning: Could not import the lzma module.
Your installed Python is incomplete.
Attempting to use lzma compression will result in a RuntimeError.
gunicorn을 사용하던 중 위와 같은 오류가 발생하게 되었습니다.
이를 해결 하는 방법은 다음과 같습니다.
$ sudo apt-get install liblzma-dev
apt-get install 명령어를 통하여 liblzma-dev를 설치해주면 됩니다.
그 다음 python을 한번 다시 컴파일 해주어야 합니다.
먼저 설치할 때 사용했던 파일들이 있는 디렉토리로 이동합니다.
만약 설치할 때 사용했던 파일들이 있는 디렉토리가 없다면 먼저 python 버전을 확인한 후에
아래의 링크를 참고하여 python파일을 다운로드 받아 활용하기 바랍니다.
$ python3 -V
3.7.4
설치할 때 사용했던 파일들이 있는 디렉토리로 이동하여
$ cd Python-3.7.4
$ ./configure
$ make
$ sudo make install
위의 명령어를 차례대로 실행한 뒤 python -V 명령어를 통하여 기존에 설치했던 버전과 동일한 버전인지 확인합니다.
$ python3 -V
3.7.4
동일하게 잘 나온다면 완료입니다.
읽어주셔서 감사합니다.
'유용한 정보 > Linux | Ubuntu' 카테고리의 다른 글
[Ubuntu] netplan 으로 고정 IP 설정하는 방법! (Ubuntu 17.10 버전 이상부터) (0) | 2022.03.05 |
---|---|
[Ubuntu] tar (child): cannot run bzip2: No such file or directory 해결 방법 (0) | 2021.05.23 |
[Ubuntu] ModuleNotFoundError: No module named '_bz2' 해결 방법 (0) | 2021.01.13 |
[Ubuntu] 우분투 zip 명령어로 압축하는 방법! (0) | 2020.11.02 |
[Ubuntu] System restart required 해결방법 (0) | 2020.09.21 |
Comments