sudo apt update NO_PUBKEY error on raspberry pi 4

问题描述 投票:0回答:1

我在Raspberry Pi 4上运行Raspbian GNULinux 10 (buster)并尝试一个项目。https:/pimylifeup.comraspberry-pi-internet-speed-monitor---。 在这里,它运行一个速度测试并记录结果。我刚刚完成了 "编写我们的速度测试Python脚本 "部分,我试图用sudo apt update更新,但我得到这个错误。apt更新错误的图片

我是超级新手,不知道为什么会从ookla.com更新。我唯一能想到的原因是,我安装了 "ookla.com"。sudo pip3 install speedtest-cli但我真的不确定。当我去仓库时,它说它从拉。https:/ookla.bintray.comdebian buster发布。 它说仓库路径丢失或未指定。

raspberry-pi raspbian
1个回答
0
投票

运行这个。

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 379CE192D401AB61

apt打包系统有一组可信的密钥,它决定了一个包是否可以被认证,从而被信任安装在系统上。

有时系统没有得到所有需要的密钥,就会遇到这个问题。

© www.soinside.com 2019 - 2024. All rights reserved.