Buscando erro ao instalar o Heroku

3

Eu tentei instalar o Heroku no Ubuntu usando este script

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

e eu recebo este erro ao instalar o pacote 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?

Tentei fazer o download "http://toolbelt.heroku.com/ubuntu/./foreman-0.60.0.deb" manualmente para /var/cache/apt/archives/ , mas não funcionou com o mesmo erro.

Alguma idéia para instalar essa coisa?

    
por Ammar Lakis 18.10.2012 / 13:36

1 resposta

4

O espelho em suas fontes de software pode não estar atualizado. Tente mudar o espelho em fontes de software.

Experimente também o modo alternativo de instalação. Usando os comandos abaixo

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
    
por devav2 18.10.2012 / 13:58