2017-10-30 21 views
-2

sudo apt-get -f install 명령을 실행하려고하면 다음과 같은 오류가 발생했습니다. 나는 우분투 16.04를 사용하고있다.unmet dependencies를 채우는 중 오류가 발생했습니다.

Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
Correcting dependencies... Done 
The following additional packages will be installed: 
    libpython2.7-stdlib:i386 
The following NEW packages will be installed: 
    libpython2.7-stdlib:i386 
0 upgraded, 1 newly installed, 0 to remove and 14 not upgraded. 
13 not fully installed or removed. 
Need to get 0 B/1,903 kB of archives. 
After this operation, 8,870 kB of additional disk space will be used. 
Do you want to continue? [Y/n] Y 
(Reading database ... 225635 files and directories currently installed.) 
Preparing to unpack .../libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.1_i386.deb ... 
Unpacking libpython2.7-stdlib:i386 (2.7.12-1ubuntu0~16.04.1) ... 
dpkg: error processing archive /var/cache/apt/archives/libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.1_i386.deb (--unpack): 
trying to overwrite shared '/usr/lib/python2.7/gettext.py', which is different from other instances of package libpython2.7-stdlib:i386 
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe) 
Errors were encountered while processing: 
/var/cache/apt/archives/libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.1_i386.deb 
E: Sub-process /usr/bin/dpkg returned an error code (1) 

분명히, libpython2.7-stdlib_2.7.12-1ubuntu0는 ~ 16.04.1_i386.deb 그것의 오류를 발생하지만이 구글에서 크롤링 한 후이 문제를 해결하는 방법을 잘 모르겠습니다. 나를 도울 수 있다면 많은 도움이 될 것입니다. 미리 도움을 주셔서 감사합니다.

답변

0

당신은 sudo apt-get clean

는 다른 방법이 문제를주고있다 이라구 파일을 삭제할 수 있습니다 사용하여 캐시에있는 모든 파일을 삭제할 수 있습니다 : -

sudo rm /var/cache/apt/archives/libpython2.7-stdlib_2.7.12-1ubuntu0~16.04.1_i386.deb 

모든 사용 sudo apt-get upgrade 후 다시 새로운 사본을 다운로드합니다.

+0

'sudo apt-get upgrade'를 실행하려고하면 다음을 반환합니다. 패키지 목록 읽기 ... 완료 건물 종속성 트리 상태 정보 읽기 ... 완료 'apt-get -f install'을 실행하여이를 수정하려고 할 수 있습니다. 다음 패키지에는 unmet 종속 항목이 있습니다. libpython-stdlib : i386 : 종속 항목 : libpython2.7-stdlib : i386 (> = 2.7.11-1 ~) 그러나 설치되지 않았습니다. python2.7 : i386 : 종속 항목 : libpython2. 7-stdlib : i386 (= 2.7.12-1ubuntu0 ~ 16.04.1) 그러나 설치되지 않았습니다 (경고가 너무 길기 때문에 생략합니다) E : Unmet dependencies. -f를 사용해보십시오. 내가 실제로 직면 한 원래 문제입니다. – HK1988