반응형
** 오류발생 **
dpkg: error processing package python3-xdg (--configure): package is in a very bad inconsistent state; you should reinstall it before attempting configuration dpkg: error processing package python-lockfile (--configure): package is in a very bad inconsistent state; you should reinstall it before attempting configuration dpkg: error processing package python-xdg (--configure): package is in a very bad inconsistent state; you should reinstall it before attempting configuration 처리하는데 오류가 발생했습니다: python-lockfile
python-xdgpython3-xdg |
파이썬 설치 중 오류발생
** 해결방법 **
1. 기존 파이썬에 연결된 심볼릭 링크 제거
# update-alternatives --remove [이름] [경로] # update-alternatives --remove python /etc/alternatives/python |
2. python 기존 심볼릭 링크 복원
# rm /usr/bin/python # ln -sf /usr/bin/python2.7 /usr/bin/python # do-release-upgrade |
반응형
'오류 발생 및 해결' 카테고리의 다른 글
ImportError: cannot import name '_psutil_linux' (0) | 2021.02.04 |
---|---|
ModuleNotFoundError: No module named 'pip._internal' (0) | 2021.01.25 |
python 업그레이드 후 터미널 안될 때 (0) | 2021.01.20 |
[Errno 5] [Errno 12] 메모리를 할당할 수 없습니다 (0) | 2020.09.22 |
윈도우 GUI 환경이 삭제되었을 때 (0) | 2020.09.10 |