Build ITK wrapping python error

I download the InsightToolkit-4.11.1.tar.gz from https://itk.org/ITK/resources/software.html Unzip in my computer (ubuntu16.04.1),then make folder install the ITK
in the terminal
./configure InsightToolkit-4.11.1 and the option in the picture

then configure and generate the file
when I make in the terminal, an error appeared

I reinstall my curl and configure with the openssl and check in the terminal

the https is in the protocols ,but when I make again ,it’s still throwing me this error,how can I fix it?
Any help will be very grateful。

Hello,

I think your problem is that you are using CMake built without SSL support. Therefore, it cannot download these archives over https. To verify that CMake is compiled with SSL support, you can type the following command in the terminal:
strings `which cmake` |grep OpenSSL

If the output of this command is empty, that means that CMake wasn’t built with SSL support. You should recompile it.
As a side note, it is always a good idea to build the latest ITK release which is now 4.12.2 .

Hope this helps.

Francois

1 Like

Thanks for your help, your answer is right,I recompiled the CMake and ITK ,it run successful.

1 Like