Após atualizar o cmake, ainda estou recebendo erro para instalar o ITK?

1

Eu quero instalar um software, que requer o ITK e está gerando um erro:

[ 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

Eu removi o cmake atual (3.5.1) e o instalei novamente a partir do site do cmake e seguindo o instruções aqui . A versão mais recente é cmake version 3.11.3 , no entanto, ainda recebo o mesmo erro. Você poderia por favor, me ajudar com isto?

    
por S.EB 09.06.2018 / 11:44

1 resposta

1

Ubuntu 14.04 - amd64 . ... Construa um cmake para ITK5.0 , por ex. cmake_3.10.3 : Obtenha os "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

Resultado: cmake_3.10.3-1ubuntu14_amd64.deb link

Instalar / atualizar o 'cmake': $ sudo gdebi Downloads/cmake_3.10.3-1ubuntu14_amd64.deb

$ cd ITK-5.0a02/build/ && cmake .. && make : Os 259 executáveis são criados → 1.2 GB (Tempo de compilação = 3 a 4 horas)

$ sudo make install > ITK5_install.log link → Linha 2904: /usr/local/bin/itkTestDriver

    
por Knud Larsen 11.06.2018 / 23:31