枕头的建筑轮失败是什么意思?
我不明白这个错误“枕头建造轮失败”是什么意思? 我只是想安装easyocr,但它给了我一个错误,我试图在互联网上找到问题的解决方案但找不到它。帮我解决这个问题,我将非常感激
pip install easyocr
I don't understand what this error 'Failed building wheel for Pillow' means?
I just wanted to install easyocr, but it gives me an error, I tried to find a solution to the problem on the Internet but could not find it. Help me solve this problem, I will be very grateful
pip install easyocr
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
pip install -u pip
这将升级系统中的PIP版本。有时,您要安装的最新版本的Python软件包与系统中安装的
pip
版本不兼容。上面的命令将更新您的
pip
,并且一旦完成,您可以尝试再次运行命令pip install easyocr
。让我知道这是否有帮助!
如果这没有帮助,请让我知道您是在Windows机器还是Linux机器上。
如果您在Ubuntu机器上,则可能必须重做我使用
pip3
而不是pip
的步骤。Try doing
pip install -U pip
This will upgrade the version of pip in your system. Sometimes, the latest version of a python package that you are trying to install is not compatible with the
pip
version installed in the system.The above command will update your
pip
and once that is done, you can try running the commandpip install easyocr
once again.Let me know if this helped!!
If this did not help, please let me know whether you are on a windows machine or a linux machine.
If you are on an Ubuntu machine then you probably have to redo the steps that I mentioned using
pip3
instead ofpip
.