Win10安装tesserocr报错

Win10安装tesserocr报错

最近在看崔庆才的爬虫书,在windows下使用 pip install tesserocr pillow 安装tesserocr,报错:图片就不上传了,参考这篇博文中的报错图片:https://blog.csdn.net/coolcooljob/article/details/80385711

这位博主最后给出的解决方案是下载 wheel 包,放在python目录下,并使用 pip install wheel文件名来安装。
这里说下,思路是对的,但很多人都碰到了如下报错:
Requirement ‘tesserocr-2.4.0-cp37-cp37m-win-amd64.whl’ looks like a filename, but the file does not exist
tesserocr-2.4.0-cp37-cp37m-win-amd64.whl is not a supported wheel on this platform
提示找不到文件。
最后的办法是,将 wheel 文件放在 Scripts 目录下:
使用以下命令:注意其中路径使用绝对路径指定文件位置就可以了:
pip install C:\Disk\Anaconda3\Scripts\tesserocr-2.4.0-cp37-cp37m-win_amd64.whl

你可能感兴趣的:(python)