go-doc-tesseract

环境搭建

window

1
2
3
4
5
6
7
8
9
10
11
12
# 下载vcpkg 管理c++库
https://github.com/microsoft/vcpkg
git clone https://github.com/microsoft/vcpkg
.\vcpkg\bootstrap-vcpkg.bat

# Tesseract库下载
# 动态库
vcpkg install tesseract:x86-windows
vcpkg install tesseract:x64-windows
# 静态库
vcpkg install tesseract:x86-windows-static
vcpkg install tesseract:x64-windows-static