新安装的 Debian 11 在使用第三方软件源的时候,需要首先添加第三方软件源的密钥。比如说我要把 ODOO 13 的源加入系统,需要运行:
wget -O - https://nightly.odoo.com/odoo.key | apt-key add -
这时候 Debian 11 可能会报错:
E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operationconnected.HTTP request sent, awaiting response... 200 OKLength: 3112 (3.0K) [application/octet-stream]Saving to: ‘STDOUT’- 0%[ ] 0 --.-KB/s in 0sCannot write to ‘-’ (Broken pipe).
系统提示没有安装该操作需要的gnupg, gnupg2 and gnupg1包,因此我们按照先提示安装上面提到的软件:
apt install gnupg
然后再重新运行上面的命令,就可以了。 |