2017-05-12 2 views
0

내가 윈도우 10 호스트 OS에 파이썬에 대한 패키지를 tesserocr 설치하려고하고 있습니다 난창 (10)에 tesserocr 설치 PIP 오류

pip install tesserocr 
Collecting tesserocr 
    Using cached tesserocr-2.1.3.tar.gz 
Building wheels for collected packages: tesserocr 
    Running setup.py bdist_wheel for tesserocr ... error 
    Complete output from command "C:\Program Files\Anaconda3\python.exe" -u -c 
"import setuptools, 
tokenize;__file__='C:\\Users\\hp\\AppData\\Local\\Temp\\pip-build- 
klj3zdup\\tesserocr\\setup.py';f=getattr(tokenize, 'open', open) 
(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, 
__file__, 'exec'))" bdist_wheel -d 
C:\Users\hp\AppData\Local\Temp\tmpoyt9eh40pip-wheel- --python-tag cp35: 
    running bdist_wheel 
    running build 
    running build_ext 
    Failed to extract tesseract version from executable: [WinError 2] The 
system cannot find the file specified 
    Supporting tesseract v3.04.00 
    Building with configs: {'libraries': ['tesseract', 'lept'], 
'cython_compile_time_env': {'TESSERACT_VERSION': 197632}} 
    cythoning tesserocr.pyx to tesserocr.cpp 
    building 'tesserocr' extension 
    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft 
Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp- 
build-tools 

    ---------------------------------------- 
    Failed building wheel for tesserocr 
    Running setup.py clean for tesserocr 
Failed to build tesserocr 
Installing collected packages: tesserocr 
    Running setup.py install for tesserocr ... error 
    Complete output from command "C:\Program Files\Anaconda3\python.exe" -u 
-c "import setuptools, 
tokenize;__file__='C:\\Users\\hp\\AppData\\Local\\Temp\\pip-build- 
klj3zdup\\tesserocr\\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\hp\AppData\Local\Temp\pip- 
10ema0ny-record\install-record.txt --single-version-externally-managed -- 
compile: 
running install 
running build 
running build_ext 
Failed to extract tesseract version from executable: [WinError 2] The system cannot find the file specified 
Supporting tesseract v3.04.00 
Building with configs: {'cython_compile_time_env': {'TESSERACT_VERSION': 197632}, 'libraries': ['tesseract', 'lept']} 
skipping 'tesserocr.cpp' Cython extension (up-to-date) 
building 'tesserocr' extension 
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visualstudio.com/visual-cpp-build-tools 

---------------------------------------- 
Command ""C:\Program Files\Anaconda3\python.exe" -u -c "import setuptools, 
tokenize;__file__='C:\\Users\\hp\\AppData\\Local\\Temp\\pip-build- 
klj3zdup\\tesserocr\\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\hp\AppData\Local\Temp\pip- 
10ema0ny-record\install-record.txt --single-version-externally-managed -- 
compile" failed with error code 1 in C:\Users\hp\AppData\Local\Temp\pip- 
build-klj3zdup\tesserocr\ 

방법을 실행

pip install tesserocr 

오류 다음 무엇입니까 이 과실을 극복하시오?

답변

0

오류 로그에서 알 수 있듯이 여기에는 컴퓨터에 Microsoft Visual C++ 14.0이 없습니다.

는 역 추적 ( this one)에서 볼 수있는 링크를 따라 간단하게 설치,이 문제를 해결하고 명령에 오타가 명령

pip install tesserocr 
+0

다시 시도합니다. 'pip install '이 아니라'pip install tesserocr'이어야합니다. – thewaywewere

+0

네 말이 맞다. 고마워요. 나는 대답을 편집했다. – Giordano