サーバー証明書取得で判明

/root/.local/share/letsencrypt/lib/python2.6/site-packages/cryptography/init.py:26:DeprecationWarning:Python 2.6チームはPythonコアチームによってサポートされなくなりました。Pythonをアップグレードしてください。 暗号の将来のバージョンでは、Python 2.6のサポートが廃止される予定です

------------------------
CentOS 7 に Python 3.x を yum でインストール

IUS Community Project のリポジトリを追加
[root@falcon21 ~]# yum install -y https://centos7.iuscommunity.org/ius-release.rpm
読み込んだプラグイン:fastestmirror, langpacks, priorities
ファイルが開けません:  https://centos7.iuscommunity.org/ius-release.rpm を飛ばします。
エラー: 何もしません

インストールできない。
wgetを試行   ---- centos7.iuscommunity.org に安全の確認をしないで接続するには、`--no-check-certificate' を使ってください。

[root@falcon21 ~]# wget https://centos7.iuscommunity.org/ius-release.rpm --no-check-certificate
2018-05-09 11:37:54 (162 MB/s) - `ius-release.rpm' へ保存完了 [8340/8340]


[root@falcon21 ~]# yum install -y ius-release.rpm

Running transaction
  インストール中          : ius-release-1.0-15.ius.centos7.noarch           1/1
  検証中                  : ius-release-1.0-15.ius.centos7.noarch           1/1

インストール:
  ius-release.noarch 0:1.0-15.ius.centos7                                      

完了しました!

----------------------------------
Python 3.x を検索
[root@falcon21 ~]# yum search all python | more
python34 python35 python36 まで、あるようだ。


Python 3.6 とその関連パッケージを指定インストール
[root@falcon21 ~]# yum install -y python36u python36u-libs python36u-devel python36u-pip
インストール:
  python36u.x86_64 0:3.6.5-1.ius.centos7                                       
  python36u-devel.x86_64 0:3.6.5-1.ius.centos7                                 
  python36u-libs.x86_64 0:3.6.5-1.ius.centos7                                  
  python36u-pip.noarch 0:9.0.1-1.ius.centos7                                   

依存性関連をインストールしました:
  python36u-setuptools.noarch 0:39.0.1-1.ius.centos7                           

完了しました!


**************************************************************************

投票数:15 平均点:10.00

 
Back to Top