1. 程式人生 > 其它 >使用Python求牛頓插值多項式及其差商表

使用Python求牛頓插值多項式及其差商表

 1 #查詢可安裝版本
 2 [root@localhost ~]# yum list docker-ce --showduplicates | sort -r
 3 Repository extras is listed more than once in the configuration
 4 docker-ce.x86_64                3:20.10.7-3.el8                 docker-ce-stable
 5 docker-ce.x86_64                3:20.10.6-3.el8                 docker-ce-stable
6 docker-ce.x86_64 3:20.10.5-3.el8 docker-ce-stable 7 docker-ce.x86_64 3:20.10.4-3.el8 docker-ce-stable 8 docker-ce.x86_64 3:20.10.3-3.el8 docker-ce-stable 9 docker-ce.x86_64 3:20.10.2-3.el8 docker-ce-stable
10 docker-ce.x86_64 3:20.10.1-3.el8 docker-ce-stable 11 docker-ce.x86_64 3:20.10.0-3.el8 docker-ce-stable 12 docker-ce.x86_64 3:19.03.15-3.el8 docker-ce-stable 13 docker-ce.x86_64 3:19.03.14-3.el8 docker-ce-stable
14 docker-ce.x86_64 3:19.03.13-3.el8 docker-ce-stable 15 上次元資料過期檢查:0:22:09 前,執行於 2021年06月24日 星期四 10時24分40秒。 16 可安裝的軟體包 17 #安裝 18 [root@localhost ~]# yum install -y docker-ce.x86_64 19 [root@localhost ~]# docker --version 20 Docker version 20.10.7, build f0df350 21 22 23 #查詢已安裝的Docker包 24 [root@localhost ~]# yum list installed | grep docker 25 Repository extras is listed more than once in the configuration 26 containerd.io.x86_64 1.4.6-3.1.el8 @docker-ce-stable 27 docker-ce.x86_64 3:20.10.6-3.el8 @docker-ce-stable 28 docker-ce-cli.x86_64 1:20.10.7-3.el8 @docker-ce-stable 29 docker-ce-rootless-extras.x86_64 20.10.7-3.el8 @docker-ce-stable 30 docker-scan-plugin.x86_64 0.8.0-3.el8 @docker-ce-stable 31 #解除安裝Docker-ce 32 [root@localhost ~]# yum remove -y docker-ce 33 #刪除docker目錄 34 [root@localhost ~]# rm -rf /var/lib/docker /var/run/docker 35 #檢視是否刪除乾淨 36 [root@localhost ~]# yum list installed | grep docker 37 Repository extras is listed more than once in the configuration