centos python yum error
-
[ CentOS ] python3로 변경 후 YUM 실행시 SyntaxError: invalid syntax 원인과 해결 방법Linux/RedHat, CentOS, ubuntu 2019. 12. 20. 19:01
python3로 업그레이드 한 후 YUM을 실행했을 때, 에러가 발생하였다. 원인 /usr/bin/yum의 파일을 열어보니, import yum을 하였을시 예외처리가 되어 있었다. python3에는 모듈이 없나보다. #!/usr/bin/python import sys try: import yum except ImportError: print >> sys.stderr, """\ There was a problem importing one of the Python modules required to run yum. The error leading to this problem was: %s Please install a package which provides this module, or verify that..