Search code examples
meteor

Install old meteorjs version


The Meteor docs and website explain how to install the latest version, with curl https://install.meteor.com/ | shor npm install -g meteor, but I need to install a particular old version. How can I install Meteor version 1.11?


Solution

  • You can provide a release parameter for example:

    curl "https://install.meteor.com/?release=1.3.3.1" | sh
    

    Also see:

    how do I install a previous version of meteor JS?