英文:
Unable to install easyocr and torch on Fedora 37
问题
我在Fedora 37机器上尝试安装torch和easyocr
。我使用了以下命令:pip install easyocr
,pip 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:
答案2
得分: 1
作为对上一个答案的补充,我可以证明以下命令
pip --no-cache-dir install easyocr
在内存相对有限的系统上可以正常工作。
以下是演示我在 Fedora 37 上使用上述命令安装它的录像。录像是实时的,我的互联网连接速度非常一般,所以...
英文:
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...
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论