2013-08-23 3 views
1

У меня есть Chromebook от Samsung Series 3 с процессором ARM. Я сделал Crouton chroot и установил Ubuntu cli. У меня установлен и запущен Node.js 0.10.15. Я попытался установить heroku-toolbelt, и он не будет запущен. Ниже команда:Невозможно установить инструментальный инструмент Heroku на Chromebook от Samsung ARM?

(precise)[email protected]:/# wget --no-check-certificate -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh

Я использовал --no-check-certificate, потому что, когда я взял тихий режим выключен, я узнал, что является причиной установки выбивать. После того, как несколько раз он не может проверить сертификаты, сказал мне, она сказала:

gpg: no valid OpenPGP data found. 
Get:1 http://toolbelt.heroku.com ./ Release.gpg [490 B] 
Hit http://ports.ubuntu.com precise Release.gpg   
Hit http://ports.ubuntu.com precise-updates Release.gpg 
Hit http://ports.ubuntu.com precise-security Release.gpg 
Hit http://ports.ubuntu.com precise Release 
Hit http://ports.ubuntu.com precise-updates Release 
Get:2 http://toolbelt.heroku.com ./ Release [1,673 B]     
Ign http://toolbelt.heroku.com ./ Release        
and a whole lot more Hit http://...... 

После чего он сказал:

Reading package lists... Done 
Building dependency tree  
Reading state information... Done 
The following extra packages will be installed: 
    ca-certificates foreman git git-core git-man heroku libasn1-8-heimdal libcurl3-gnutls liberror-perl libgcrypt11 libgnutls26 libgpg-error0 
    libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libkrb5-26-heimdal libldap-2.4-2 libp11-kit0 
    libroken18-heimdal librtmp0 libruby1.9.1 libsasl2-2 libsasl2-modules libtasn1-3 libwind0-heimdal libyaml-0-2 openssl rsync ruby1.9.1 
Suggested packages: 
    git-daemon-run git-daemon-sysvinit git-doc git-el git-arch git-cvs git-svn git-email git-gui gitk gitweb rng-tools gnutls-bin libsasl2-modules-otp 
    libsasl2-modules-ldap libsasl2-modules-sql libsasl2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal openssh-server ruby1.9.1-examples ri1.9.1 
    graphviz ruby1.9.1-dev 
The following NEW packages will be installed: 
    ca-certificates foreman git git-core git-man heroku heroku-toolbelt libasn1-8-heimdal libcurl3-gnutls liberror-perl libgcrypt11 libgnutls26 
    libgpg-error0 libgssapi3-heimdal libhcrypto4-heimdal libheimbase1-heimdal libheimntlm0-heimdal libhx509-5-heimdal libkrb5-26-heimdal libldap-2.4-2 
    libp11-kit0 libroken18-heimdal librtmp0 libruby1.9.1 libsasl2-2 libsasl2-modules libtasn1-3 libwind0-heimdal libyaml-0-2 openssl rsync ruby1.9.1 
0 upgraded, 32 newly installed, 0 to remove and 0 not upgraded. 
Need to get 13.2 MB of archives. 
After this operation, 28.1 MB of additional disk space will be used. 
WARNING: The following packages cannot be authenticated! 
    foreman heroku heroku-toolbelt 
E: There are problems and -y was used without --force-yes 
(precise)[email protected]:/# heroku 
bash: heroku: command not found 

Что случилось?

ответ

1

В вашем apt-get выходе, последняя строка гласит:

E: Есть проблемы и -y использовали без --force-да

Если вы посмотрите на actual script Heroku uses to install itself on linux, что соответствует линии apt-get install -y heroku-toolbelt.

Попробуйте запустить: apt-get install -y --force-yes heroku-toolbelt

+0

Это сработало для меня. Благодаря! –

Смежные вопросы