7

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?

4

2 に答える 2

3

64 ビット用は見つかりませんでしたが、Python 2.7 32 ビットを 64 ビット マシンで実行し、ここにあるインストーラーを使用できます。

http://www.4shared.com/file/Zg8oJ9-g/zbar-010win32-py27_2.html

于 2013-04-24T12:36:19.190 に答える
2

これが質問に直接答えないことは承知していますが、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"])

状況によっては、疑わしい可能性のあるサイトからインストーラーをダウンロードするよりも優れている場合があります。

于 2013-05-09T14:00:06.833 に答える