반응형
저는 데비안 사용자이고 python-dev를 설치하고 싶지만 셸에서 루트로 코드를 실행할 때 :
# aptitude install python-dev
다음과 같은 오류가 발생합니다.
Traceback (most recent call last):
File "/usr/bin/apt-listchanges", line 28, in <module>
import apt_pkg
ImportError: No module named apt_pkg
무엇이 문제인 것 같으며 어떻게 해결할 수 있습니까?
해결 방법
작동하는 python-apt 패키지가 있는지 확인하십시오. apt_pkg.so를 찾을 수없는 문제를 해결하기 위해 해당 패키지를 다시 제거하고 설치할 수 있습니다.
apt-get install python-apt
참조 페이지 https://stackoverflow.com/questions/13708180
반응형
'파이썬' 카테고리의 다른 글
파이썬 문자열을 dict로 변환 하시겠습니까? (0) | 2021.02.01 |
---|---|
파이썬 Is a Python list guaranteed to have its elements stay in the order they are inserted in? (0) | 2021.02.01 |
파이썬 이동 평균 또는 실행 평균 (0) | 2021.02.01 |
파이썬 When to use Tornado, when to use Twisted / Cyclone / GEvent / other (0) | 2021.02.01 |
파이썬 Extract day of year and Julian day from a string date (0) | 2021.02.01 |
댓글