I followed this:
https://ruvi-d.medium.com/getting-zbarlight-to-work-on-windows-a3dc643dba18
I got an error - "I get "ValueError("Unknown MS Compiler version %s " % msc_ver)" so I changed "elif msc_ver == '1900':" to "elif msc_ver == '1916':" in the cygwinccompiler.py file. Now the error I get is ...AppData\Local\Programs\Python\Python38 -LC:\zbarlight\venv\PCbuild\amd64 -lzbar -lpython38 -lvcruntime140 -o build\lib.win-amd64-3.8\zbarlight\_zbarlight.cp38-win_amd64.pyd C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lzbar collect2.exe: error: ld returned 1 exit status
cannot find -lzbar when trying to run "python.exe .\setup.py bdist_wheel" on zbarlight
59 Views Asked by Rony Tesler At
0
There are 0 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in CYGWIN
- How to add directories to Cygwin gcc default search path
- Cygwin failing to open .git/config
- What is the meaning of environment variable !::=::\
- Error in Dired sorting on Windows (with Cygwin Emacs)
- Eclipse not recognizing CygWin gcc
- Getting gcloud to work in Cygwin Windows
- Facing issue while listing file contents in cygwin
- Error while installing HBase on windows
- How do i change the modification/creation date of a folder
- Relationship between gcc, g++, cygwin, and wingw?
- Linking error with LAPACK under cygwin
- Error loading D:\cygdrive\d\path\to\my\file.pdf
- Unable to connect to SSH after generated public key and private key
- wget not displaying all website data
- How to run pyinstaller correctly on cygwin?
Related Questions in MINGW32
- MinGW error when compiling C: The procedure entry point libintl_setlocale could not be located in the DLL-file as.exe
- Can't execute makefile in Windows 7
- C++11 MinGW 4.9.1 shared_ptr and const static class field result "Undefined reference"
- Odeint with precompiled headers in Mingw fails
- undefined reference to `boost::system::system_category(), but I already have -lboost_system
- MSYS2 specify version of mingw32 or mingw64 gcc
- Cant' build OpenCV 3.2.0 (Mingw32)
- Why are there errors reported inside a standard library header after adding a search directory in compiler options?
- QT Compile on Linux: Cross Compilation failed with mxe / mingw / Linux, Debian
- fopen fails in special condition (windows+eclipse cdt+mingw)
- DWORD to LPDWORD conversion errors
- IOException:cannot run program:CreateProcess error=193,%1 is not a valid Win32 application
- Allocate large memory using x64 system with x86 application in c++
- How do I create window using WinMain
- freopen doesn't work for C stdin
Related Questions in ZBAR
- xcode saying cannot find ZBarSDK.h, however it is in my project
- QR decoding with zbar
- How to limit ZBar QR code reader to only detect QR codes?
- Phonegap Zbar iTunes Connect Invalid Bundle Structure
- Using ZBar in own activity and show preview on activity
- Stop automatic Zbar camera rotation
- ZBar scanning on ipad 4, setting scancrop
- Zbarcam-Raspberry Pi
- How to decode a QR-code image in (preferably pure) Python?
- Installing Zbar in Windows for Python 2.6.6
- I want to use ZBar Barcode Reader's zbarimg.exe in my java code , when i compile my program , a window pops up and gone in a fraction of seconds
- ZBar Camera Preview Stretched Android
- ZBar - QR Code Scanner, crashing in Android Studio
- Script only works in Python installed directory
- ZBar camera overlay always leaves space for controls even if they're not displayed
Related Questions in CYGWIN-64
- I have created a DLL using Makefile using cygwin64 but it is not accessible to Node.js
- windows-x86_64/bin/clang is unable to create an executable file. C compiler test failed
- getting undefined reference `__locale_ctype_ptr' and `__getreent' when using /usr/lib/gcc/x86_64-w64-mingw32 on Cygwin64
- cannot find -lzbar when trying to run "python.exe .\setup.py bdist_wheel" on zbarlight
- Cygwin64 does not show my desktop directories
- cygwin64 mingw64 VM gcov does not generate gcda file
- Getting return code "127" after execution of program
- cygwin script into python some cmds not working
- I need advice on setup compiler for c library with embedded lua in Cygwin with Mingw on Windows
- Visual Studio Code can't find helloworld.cpp source file when debugging via gdb
- Limited Number of User (child) Processes on Cygwin 3.5 64x
- undefined reference to 'winMain' in Cygwin terminal
- Installing TreeTagger on Windows with Cygewin to use with Python
- Installing pynfft on Cygwin
- Printing surrogate UTF characters in Java on uxterm
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?