How can I completely uninstall and then reinstall Meteor.js?

后端 未结 6 1724
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 07:48

My app started crashing for absolutely no reason. I rolled back to a version I knew worked, but it is still crashing. I cloned a version from github that I absolutely know

6条回答
  •  甜味超标
    2020-12-02 08:15

    Let’s start with the deletions, then we’ll move on to the reinstallations.

    1. If you ever installed Meteorite, uninstall and delete it:

      sudo mrt uninstall
      sudo mrt uninstall --system
      rm -rf ~/.meteorite
      
    2. Then delete Meteor:

      sudo rm /usr/local/bin/meteor
      rm -rf ~/.meteor
      

    Now start over at the beginning:

    1. Repair permissions if necessary:

      sudo chown -R $(whoami) ~/.npm
      
    2. Reinstall Meteor:

      curl https://install.meteor.com/ | sh
      
    3. Next check that your project has all its proper packages:

      cd /path/to/your/project
      meteor update
      
    4. If your project still won’t compile, you can reset it (warning: deletes database):

      cd /path/to/your/project
      meteor reset
      
    5. Still no luck? Recreate the Meteor project (warning: deletes database and the project’s memory of what packages you’ve installed):

      cd /path/to/your/project
      rm -rf ./.meteor
      cd ..
      meteor create project-new
      rm ./project-new/project-new.*
      mv ./project/* ./project-new/
      cd ./project-new
      

      (and run meteor add *packagename* over and over to reinstall each package you were using)

提交回复
热议问题