gpg:无法连接到代理:IPC 连接调用失败(WSL Ubuntu 20.04)

gpg:无法连接到代理:IPC 连接调用失败(WSL Ubuntu 20.04)

更新 WSL Ubuntu 后我无法执行sudo apt-key add任何操作并出现错误:

gpg: can't connect to the agent: IPC connect call failed

答案1

卸载默认安装的 gpg 并安装 gnupg1 包

sudo apt remove gpg

sudo apt install gnupg1

答案2

这似乎是一个WSL 中的已知错误。您可以尝试使用以下方法手动添加密钥:

curl -sL "http://keyserver.ubuntu.com/pks/lookup?op=get&search=YOUR_KEY_HERE" | sudo apt-key add

YOUR_KEY_HERE是您需要安装的软件包的 GPG 密钥。例如:0xA6A19B38D3D831EF

相关内容