1.安装Pillow pip install Pillow 2.安装tesseract-ocr OCR(Optical Character Recognition, 光学字符识别) 软件 安装包含两个部分:ORC引擎本身以及对应语言的训练数据 github地址: https://github.com/tesseract-ocr/tesseract You can either Install Tesseract via pre-built binary package or build it…
解决使用go get 下载模块下载超时的问题 解决使用go get 下载模块下载超时的问题 使用go env可以看到,默认的GOPROXY的值是https://proxy.golang.org, 而https://proxy.golang.org在国内无法访问. 如果您使用的 Go 版本是 1.13 及以上, 可以使用以下命令解决 go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.io,direct 还可以用以下方式解决…