Centos

在 CentOS 上安裝 gdcm

  • December 17, 2019

我正在使用 CentOS 7。

我訪問了 gdcm 原始碼頁面,唯一有連結的 Linux 發行版是 Debian 和 Ubuntu。我下載並解壓縮了 GDCM-$VERSION-Linux.tar.gz。然後我閱讀了 INSTALL.txt。它提供了以下安裝 gdcm 的說明。

* git clone --branch release git://git.code.sf.net/p/gdcm/gdcm
* mkdir gdcmbin
* cd gdcmbin
* ccmake ../gdcm
  [select your configuration]
* Press 'c' (configure), Press 'g' (generate)
* make

當我嘗試 ccmake ../gdcm 並按下“c”時,我得到了

CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
 CMake 3.9.2 or higher is required.  You are running version 2.8.12.2

然後我嘗試了

sudo yum install cmake

並得到

Package cmake-2.8.12.2-2.el7.x86_64 already installed and latest version
Nothing to do

要獲得所需的版本cmake

yum install cmake3

這將為您提供工具:cmake3ccmake3. 之後:

ccmake3 ../gdcm

引用自:https://unix.stackexchange.com/questions/557600