Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Meteor.js without Chocolatey

Tags:

windows

meteor

As the title reads, I'm looking for a way to install Meteor.js without Chocolatey package manager. Any way I can do that? I should also mention that I'm running Windows.

like image 316
Boris Avatar asked Jun 25 '18 21:06

Boris


2 Answers

There appears to be an installer available at https://install.meteor.com/windows. I was able to see this in the installation script:

if [ "$UNAME" ">" "MINGW" -a "$UNAME" "<" "MINGX" ] ; then
    echo "To install Meteor on Windows, download the installer from:"
    echo "https://install.meteor.com/windows"
    exit 1
fi
like image 86
poke Avatar answered Oct 23 '22 03:10

poke


There is a new native NPM-based method to install Meteor without Chocolatey. See the guide: https://github.com/meteor/meteor/blob/devel/npm-packages/meteor-installer/README.md

like image 1
Jankapunkt Avatar answered Oct 23 '22 03:10

Jankapunkt