LoginSignup
1
0

More than 3 years have passed since last update.

CentOS7.7へのyumアップデート失敗

Last updated at Posted at 2019-09-22

はじめに

CentOS7.7へのアップデート時、Transaction check errorとなりPython関係でコケました。
原因と解決法の覚書です。

原因と対処

原因

パッケージ python36 は python3 によって不要になりました。
代わりに python3-3.6.8-10.el7.x86_64 のインストールを試みています。

対処

$ sudo yum remove python36
$ sudo yum update

単純に手動でpython36を削除してyum updateを行えばOKでした。
無事、アップデート完了です。

$ cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)

$ python3 --version
Python 3.6.8
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0