安装 Heroku 时获取错误

安装 Heroku 时获取错误

我尝试使用此脚本在 Ubuntu 中安装 Heroku

wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh

我在安装 heroku-toolbelt 包时收到此错误

Failed to fetch http://toolbelt.heroku.com/ubuntu/./foreman-0.60.0.deb  Size mismatch
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

我尝试手动下载“http://toolbelt.heroku.com/ubuntu/./foreman-0.60.0.deb”,/var/cache/apt/archives/但没有成功,出现同样的错误。

有什么想法可以安装这个东西吗?

答案1

您的软件源中的镜像可能不是最新的。请尝试更改软件源中的镜像。

也可以尝试其他安装方式。使用以下命令

sudo apt-add-repository 'deb http://toolbelt.herokuapp.com/ubuntu ./'
wget -O- https://toolbelt.heroku.com/apt/release.key | apt-key add -
sudo apt-get update
sudo apt-get install heroku-toolbelt

相关内容