0

我正在使用 Ubuntu 14.04 并尝试安装以太坊区块链,如下面的帖子所述: https ://ethereum.gitbooks.io/frontier-guide/content/installing_linux.html

执行命令“sudo add-apt-repository -y ppa:ethereum/ethereum”时,出现以下异常:

无法添加 PPA:'ppa/ethereum/ethereum' 请检查 PPA 名称或格式是否正确。

我研究了这个问题,人们提出了以下解决方案:

  1. 请检查 PPA 名称或格式是否正确
  2. https://askubuntu.com/questions/429803/cannot-add-ppa-please-check-that-the-ppa-name-or-format-is-correct

我已尝试更新 ca 证书并检查了我系统的日期/时间。我仍然无法运行 ppa 命令。

任何指导都会有很大帮助。

问候阿努杰

4

1 回答 1

1

命令是否需要一些时间才能返回,您是否有任何机会在代理后面(我最近遇到了这个问题)?

如果是这样,请按照https://askubuntu.com/questions/53146/how-do-i-get-add-apt-repository-to-work-through-a-proxy中的说明配置您的代理。然后,使用sudo -E add-apt-repository -y ppa:ethereum/ethereum执行命令。注意-E很重要,因为它传递了环境变量。如上面的链接中所述,还有其他选项(env-keep)。

于 2016-02-04T07:40:34.293 回答