티스토리 친구하기

본문 바로가기

Error

ModuleNotFoundError: no module named 'apt_pkg'

728x90

이것은 python3의 버전이 달라서 생기는 error 입니다. 아래의 명령어로 사용하고 있는 python의 버전을 확인합니다.

 

sudo update-alternatives --config python3

 

 

그럼 아래와 같이 python3의 버전을 확인할 수 있습니다. 저는 python3.6이 선택되어 있어서 'apt_pkg' 에러가 발생했습니다. 아래에서 "type selection number"를 1 로 선택하여 python3.5로 바꿔준 후 실행하시면 됩니다. 저는 sublime text를 설치하는 도중에 이러한 문제가 생겨서, 설치 완료 후 다시 python3.6으로 돌아왔습니다.

 

 

 

Reference

 

[1] https://superuser.com/questions/1426746/modulenotfounderror-no-module-named-apt-pkg

 

python3 를 지우고 다시 설치한다.

 

sudo apt-get remove python3

sudo apt-get install python3

 

[ubuntu16.04, cuda9.0, cudnn7.1.4]

 

 

반응형