web-dev-qa-db-ja.com

CentOS python3パッケージのpython36とpython36uの違い

検索を使用すると、Python 3の2つのパッケージが同じ名前で表示されます。

$ yum search python36

そして、それらの違いは何ですか?なぜ2があるのですか?

python36.x86_64 : Interpreter of the Python programming language

そして

python36u.x86_64 : Interpreter of the Python programming language

(名前の余分なu)

8
Bohdan

python36u[〜#〜] ius [〜#〜] ;によって提供される代替ビルドです。 python36[〜#〜] epel [〜#〜] パッケージです。

yum info python36 python36uは、2つの異なるリポジトリを表示します。IUSの方がEPELパッケージよりもわずかに高いマイナーバージョン番号を持っている可能性があります。そして、さらに混乱させるために、_ Redhat Software Collections もあり、rh-python36-python

結局のところ、それは最近のバージョンと長いサポートサイクルのトレードオフに帰着していると思います。

9
Ulrich Schwarz