chenchenyuyu / chenchenyuyu.github.io

记录点点滴滴
http://cychenyu.com/
2 stars 0 forks source link

meteor download #87

Open chenchenyuyu opened 5 years ago

chenchenyuyu commented 5 years ago

https://linuxhostsupport.com/blog/how-to-install-configure-and-deploy-a-meteor-js-app-on-ubuntu-16-04/ Connect to your Linux server via SSH and install the MeteorJS framework using the command below:

sudo curl https://install.meteor.com/ | sh This will install the latest official Meteor release on your Ubuntu VPS.

In case you get the following error message when you run the installation command:

-bash: curl: command not found it means you don’t have curl installed on your server. To install the package use the commands below:

sudo apt-get update sudo apt-get install curl Once curl is installed, you can run the installation command for MeteorJS again and get the Meteor framework installed.

It will take a couple of minutes for the installation process to finish, and once it is completed you can verify that the installation is successful by checking the Meteor version:

meteor --version This should provide you with output very similar to this one:

$ meteor --version Meteor 1.4.3.2