python3.9.9安装tesserocr问题

安装tesserocr的时候,控制台报错
ERROR: Could not find a version that satisfies the requirement tessrocr (from versions: none)
ERROR: No matching distribution found for tessrocr
请问下,遇到这种情况,应该怎样解决??

问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源

命令改为:

pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

或者

pip3 install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

参考一下这里的解决办法:
https://zhuanlan.zhihu.com/p/56891151