如何在树莓派 pi3 中安装模块 pytorch_lightning.metrics
Posted
技术标签:
【中文标题】如何在树莓派 pi3 中安装模块 pytorch_lightning.metrics【英文标题】:How to install the module pytorch_lightning.metrics in Raspberry pi3 【发布时间】:2021-06-22 16:44:31 【问题描述】:我正在尝试执行一个 python 文件,该文件具有带有闪电和 Torchvision 模块的 pytorch。但是在我在 pi3 中下载并成功安装了 pytorch 的 whl 文件后,我一次又一次地遇到同样的错误。 错误是
ModuleNotFoundError: No module named 'pytorch_lightning.metrics'
由于我被困超过 3 天,我们将非常感谢您的帮助。 我已经使用 pip 安装了模块。
【问题讨论】:
你的导入命令是什么,只导入pytorch_lightning
(import pytorch_lightning as pl
) 并给我们pl.__version__
的值。另外请更新您已经通过pip
安装它,以免给潜在的回答者造成混淆。
【参考方案1】:
我发现“pytorch_lightning.metrics”可能已更新为“torchmetrics”包,请尝试将“import pytorch_lightning.metrics”更改为“import torchmetrics”
【讨论】:
以上是关于如何在树莓派 pi3 中安装模块 pytorch_lightning.metrics的主要内容,如果未能解决你的问题,请参考以下文章