Trouble installing Meteor on Ubuntu 14.04 Trouble installing Meteor on Ubuntu 14.04 curl curl

Trouble installing Meteor on Ubuntu 14.04


You may try installation with --insecure option

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

You also do not need to install meteor as root. If you want to use it as normal user, just install as that. You will automatically get a prompt for sudo when meteor install the starter script to /usr/local/bin/meteor

Good LuckTom

EDIT: if that does not work either:

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

If the result is "1" than that is missing on your system. Try to solve:

# create missing directorysudo 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

After that just try to install meteor as documented

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