web-dev-qa-db-ja.com

cmakeをアップグレードした後、ITKのインストールでまだエラーが発生しますか?

ITKを必要とするソフトウェアをインストールしたいのですが、エラーが発生しています:

[ 52%] Performing configure step for 'ITKv5'
Not searching for unused variables given on the command line.
CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
  CMake 3.10.2 or higher is required.  You are running version 3.5.1


-- Configuring incomplete, errors occurred!
CMakeFiles/ITKv5.dir/build.make:107: recipe for target 'ITKv5-prefix/src/ITKv5-stamp/ITKv5-configure' failed
make[2]: *** [ITKv5-prefix/src/ITKv5-stamp/ITKv5-configure] Error 1
CMakeFiles/Makefile2:104: recipe for target 'CMakeFiles/ITKv5.dir/all' failed
make[1]: *** [CMakeFiles/ITKv5.dir/all] Error 2
Makefile:116: recipe for target 'all' failed
make: *** [all] Error 2

現在のcmake(3.5.1)を削除し、cmake Webサイトから 指示はこちら に従って再度インストールしました。最新バージョンはcmake version 3.11.3ですが、それでも同じエラーが発生します。これで私を助けてくれますか?

1
S.EB

Ubuntu 14.04-AMD64 ...ITK5.0のcmakeを構築します。 cmake_3.10.3:「build-deps」を取得→$ Sudo apt install g++ libncurses5-dev gfortran libbz2-dev libcurl4-openssl-dev python-sphinx libjsoncpp0 libarchive-dev libexpat1-dev libuv-dev librhash-dev liblzma-dev emacs python-all-dev desktop-file-utils libx11-dev libjsoncpp-dev

結果:cmake_3.10.3-1ubuntu14_AMD64.debhttps://drive.google.com/file/d/1nUI2nRc7KfbxJZuQb9XduCiLt_qpZxlR/view?usp=sharing

'cmake'のインストール/更新:$ Sudo gdebi Downloads/cmake_3.10.3-1ubuntu14_AMD64.deb


$ cd ITK-5.0a02/build/ && cmake .. && make:259個の実行可能ファイルが作成されます→1.2GB(ビルド時間= 3 .. 4時間)

$ Sudo make install > ITK5_install.loghttps://www.dropbox.com/s/ip7zbyzifgqlkzm/ITK5_install.log.txt?dl= →2904行目:/usr/local/bin/itkTestDriver

1
Knud Larsen