I'm trying to use the zbar library with Python 2.7 and Windows 64-bit, but there are no readily made .exe installations.
I'm fairly new to "making the build" myself. What are the steps?
I'm trying to use the zbar library with Python 2.7 and Windows 64-bit, but there are no readily made .exe installations.
I'm fairly new to "making the build" myself. What are the steps?
64 ビット用は見つかりませんでしたが、Python 2.7 32 ビットを 64 ビット マシンで実行し、ここにあるインストーラーを使用できます。
http://www.4shared.com/file/Zg8oJ9-g/zbar-010win32-py27_2.html
これが質問に直接答えないことは承知していますが、Windows のビルド プロセスで克服できない問題に遭遇した場合は、サブプロセス ( http://docs.python.org /2/library/subprocess.html )。
非常に基本的なレベルでは、次のようなことができます。
import subprocess
subprocess.check_output(["C:\\Program Files (x86)\\ZBar\\bin\\zbarimg","-q", "E:\path-to-files\QR_image.png"])
状況によっては、疑わしい可能性のあるサイトからインストーラーをダウンロードするよりも優れている場合があります。