无法在Fedora 37上安装easyocr和torch。

huangapple go评论61阅读模式
英文:

Unable to install easyocr and torch on Fedora 37

问题

我在Fedora 37机器上尝试安装torch和easyocr。我使用了以下命令:pip install easyocrpip install torch。但是我无法安装torch,尽管easyocr被下载了。我想知道torch是否存在任何问题。

命令:在Fedora 37上运行pip install easyocr

英文:

I tried installing torch and easyocr on a Fedora 37 machine. I used the following command: pip install easyocr, pip install torch. But I was not able to install torch although easyocr gets downloaded. I would like to know if there is any issue with torch.

Command: pip install easyocr on Fedora 37.

答案1

得分: 2

你有4 GB的RAM,这相当低。应该使用以下命令进行安装:

pip install --no-cache-dir torch

如果有人遇到相同的问题,他们应该检查这个帖子:

https://github.com/pytorch/pytorch/issues/25164

英文:

You have 4 GB RAM which is quite low. It should install with this command:

pip install --no-cache-dir torch

If anyone is experiencing the same issue, they should check this thread:

https://github.com/pytorch/pytorch/issues/25164

答案2

得分: 1

作为对上一个答案的补充,我可以证明以下命令

pip --no-cache-dir install easyocr

在内存相对有限的系统上可以正常工作。

以下是演示我在 Fedora 37 上使用上述命令安装它的录像。录像是实时的,我的互联网连接速度非常一般,所以...

无法在Fedora 37上安装easyocr和torch。

英文:

As a complement to the previous answer, i can attest that the command

pip --no-cache-dir install easyocr

Will work as intended on a fairly limited system, memory-wise.

Here's a cast showing how i installed it, on F37, using the previous command. Cast is real-time and my internet connection is very average so...

无法在Fedora 37上安装easyocr和torch。

huangapple
  • 本文由 发表于 2023年6月26日 13:39:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/76553787.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定