2017-04-01 261 views
2
與PIP zbar和

我想我的Windows x64的機器上安裝zbar無法在Windows上安裝

pip install zbar 

這是我得到:

Collecting zbar 
Using cached zbar-0.10.tar.bz2 
Installing collected packages: zbar 
Running setup.py install for zbar ... error 
Complete output from command c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\ruiyang\\appdata\\local\\temp\\pip-build-t2okcg\\zbar\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\ruiyang\appdata\local\temp\pip-4pohzw-record\install-record.txt --single-version-externally-managed --compile: 
running install 
running build 
running build_ext 
building 'zbar' extension 
creating build 
creating build\temp.win-amd64-2.7 
creating build\temp.win-amd64-2.7\Release 
C:\Users\Ruiyang\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\Python27\include -IC:\Python27\PC /Tczbarmodule.c /Fobuild\temp.win-amd64-2.7\Release\zbarmodule.obj 
zbarmodule.c 
c:\users\ruiyang\appdata\local\temp\pip-build-t2okcg\zbar\zbarmodule.h(26) : fatal error C1083: Cannot open include file: 'zbar.h': No such file or directory 
error: command 'C:\\Users\\Ruiyang\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2 

---------------------------------------- 
Command "c:\python27\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\ruiyang\\appdata\\local\\temp\\pip-build-t2okcg\\zbar\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\ruiyang\appdata\local\temp\pip-4pohzw-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\ruiyang\appdata\local\temp\pip-build-t2okcg\zbar\ 

任何人都知道如何解決這個問題?

回答

2

您正在嘗試安裝zbar包與pip。這樣做時,pip下載源代碼並嘗試編譯此項目的C/C++源代碼。

要做這樣的事情,你需要一個C/C++編譯器並具有所有的依賴關係。 pip編譯這個軟件包可能很複雜。

另一種解決方案是下載嵌入所有二進制文件的二進制輪。 zbar開發人員建議從其下載一個二進制輪子GitHub webpage

您可以下載這個目標爲Windows Python 2.7 64位安裝的binary wheel

所有你需要做的是:

  • 打開Windows的命令行與Windows+R和由內而外cmd
  • 運行轉至您已經下載了whl文件的目錄,與cd說明
  • 運行pip install zbar-0.10-cp27-none-win_amd64.whl

例如,該命令可以是

pip install zbar-0.10-cp27-none-win_amd64.whl 

如果您有多個Python安裝,請確保使用正確的pip程序。

你可以爲任何需要編譯的代碼打包