I use python to automate boring stuff I do daily (I'm not really a "programmer").
I've been building a script to compress my files to a zip folder. For that, I'm using zipfile
library, but it only creates a ZIP file without compressing them.
In order to do that, they recommend to install zlib module and use the ZIP_DEFLATED
flag.
I'm having hard time to install the static library of zlib. I found that on git hub.
Assuming you have a functional zlib library installed in
c:\lib\zlib
(Download from https://zlib.net , use cmake to generate VS solution (withparam -DCMAKE_INSTALL_PREFIX=c:\lib\zlib
), then build theINSTALL
project from that solution, using Release mode settings)
But I don't know how to proceed with these instructions. Some one could translate to a lay guy how to install this library on windows?
Thank in advance!