MicrosoftDocs / cognitive-toolkit-docs

Creative Commons Attribution 4.0 International
18 stars 70 forks source link

libzip fresh version #174

Closed SychevIgor closed 5 years ago

SychevIgor commented 5 years ago

May we use latest version of libzip? (1.5.1)

If now, could you explicitly specify it in a text?

SychevIgor commented 5 years ago

I did some exercises and my summary: if we will download 1.1.2 version from github https://github.com/nih-at/libzip/tree/rel-1-1-2 - we will not find configure file and build will fail We should download code only from http://nih.at/libzip to build it in a following way "cd libzip-1.1.2 ./configure make -j all sudo make install" https://docs.microsoft.com/en-us/cognitive-toolkit/setup-cntk-on-linux#libzip

But for 1.5.2 - doesn't matter from where we will download code- we will not find configure file. "user@laptop:~/libzip-1.5.1$ ./configure bash: ./configure: No such file or directory"

To build 1.5.2 we should use something like

wget http://nih.at/libzip/libzip-1.5.1.tar.gz tar -xzvf ./libzip-1.5.1.tar.gz cd libzip-1.5.1 mkdir build cd build cmake .. make sudo make install

SychevIgor commented 5 years ago

nobody care