Search code examples
windowsmeteor

Installing Meteor.js without Chocolatey


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.


Solution

  • 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