-
install zbar on windows with include and library files
-
make sure mingw installed and bin directory added to the path
-
in PYTHONPATH\Lib\distutils, create a file distutils.cfg and add two lines:
[build]
compiler=mingw32
-
get
dll
lib
andinclude
file from ftp://sourceware.org/pub/pthreads-win32/dll-latest copy files toPATH_MINGW32/[lib,bin,include]
separately, just need file name likepthreadGC2
and remember to chang the name tolibpthread
-
change or add lines in
setup.py
:extra_compile_args=['-std=c99', '-IPATH_TO\ZBar\include', '-lPATH_TO\ZBar\lib'],
extra_link_args=["PATH_TO\ZBar\lib\libzbar.dll.a"],
remove line
libraries=['zbar'],
-
run
python setup.py install
Forked from Zephor5/how_to_install_zbarlight_on_windows.md
Created
November 17, 2017 09:11
-
-
Save PandaWhoCodes/fa819228814ab345debd765b918277d6 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment