2015-05-10 20 views
7

Mam problem z instalacją Meteora na Ubuntu 14.04. Przeszukałem poprzednie odpowiedzi, ale żaden nie miał tego samego problemu, który mam.Problemy z instalacją Meteora na Ubuntu 14.04

Kiedy uruchomić komendę podaną na stronie Meteor:

sudo curl https://install.meteor.com/ | sh 

pojawia się następujący komunikat:

% Total % Received % Xferd Average Speed Time Time  Time Current 
           Dload Upload Total Spent Left Speed 
100 6121 0 6121 0  0 6571  0 --:--:-- --:--:-- --:--:-- 6567 
Downloading Meteor distribution 

curl: (77) error setting certificate verify locations: 
    CAfile: /etc/pki/tls/certs/ca-bundle.crt 
    CApath: none 

gzip: stdin: unexpected end of file 
tar: Child returned status 1 
tar: Error is not recoverable: exiting now 
Installation failed.enter code here 

już zapewnione, że zwijają zainstalowano i uruchomiono sudo update-ca-certificates, sudo apt-get update i sudo apt-get upgrade , z których wszystkie pomogły poprzednie plakaty. Próbowałem też wget https://install.meteor.com/, który daje mi:

--2015-05-10 10:05:11-- https://install.meteor.com/ 
Resolving install.meteor.com (install.meteor.com)... 54.243.218.35, 54.83.1.203, 107.21.116.12, ... 
Connecting to install.meteor.com (install.meteor.com)|54.243.218.35|:443... connected. 
HTTP request sent, awaiting response... 200 OK 
Length: unspecified [text/plain] 
Saving to: ‘index.html.1’ 

    [ <=>         ] 6,121  --.-K/s in 0s  

2015-05-10 10:05:13 (153 MB/s) - ‘index.html.1’ saved [6121] 

pojęcia, co tu się dzieje?

Odpowiedz

13

Możesz spróbować instalacji z --insecure opcji

curl --insecure https://install.meteor.com/ | sh 

też nie trzeba instalować meteor jako root. Jeśli chcesz go używać jako zwykłego użytkownika, po prostu zainstaluj go. automatycznie otrzymujesz monit o sudo kiedy meteor zainstalować skrypt startowy do /usr/local/bin/meteor

Good Luck Tom

EDIT: jeśli to nie działa albo:

# check your environment 
echo $(test -d /etc/pki/tls/certs)$? 

Jeżeli wynik jest „1 "niż tego brakuje w twoim systemie. Spróbuj rozwiązać:

# create missing directory 
sudo mkdir -p /etc/pki/tls/certs 

# link ca-certificates 
sudo ln -s /etc/ssl/certs/ca-certificates.crt /etc/pki/tls/certs/ca-bundle.crt 

Potem po prostu spróbuj zainstalować meteor jak udokumentowano

# install 
curl https://install.meteor.com/ | sh