apt get - Unable to Install Heroku toolbelt on Samsung ARM Chromebook? -
i have samsung series 3 chromebook arm processor. made crouton chroot
, installed ubuntu cli. have node.js 0.10.15 installed , running. tried install heroku-toolbelt
, won't run. below command:
(precise)root@localhost:/# wget --no-check-certificate -o- https://toolbelt.heroku.com/install-ubuntu.sh | sh
i used --no-check-certificate
because when took quiet mode off learned causing install punt. after told me few times not verify certificates, did said:
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 , whole lot more hit http://......
after said:
reading package lists... done building dependency tree reading state information... done following packages 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 following new packages 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 remove , 0 not upgraded. need 13.2 mb of archives. after operation, 28.1 mb of additional disk space used. warning: following packages cannot authenticated! foreman heroku heroku-toolbelt e: there problems , -y used without --force-yes (precise)root@localhost:/# heroku bash: heroku: command not found
what happened?
in apt-get
output, last line states:
e: there problems , -y used without --force-yes
if @ actual script heroku uses install on linux, corresponds apt-get install -y heroku-toolbelt
line.
try running this: apt-get install -y --force-yes heroku-toolbelt
Comments
Post a Comment