Uninstall a Package Installed With Curl
Asked Answered
A

2

6

I installed the Iron Meteor framework using the Curl package manager for a group class project. The group has since decided to use another framework. I would like to purge the Iron Meteor framework from my Linux system but have been unable to find an uninstall command for Curl. The command to install it was found on the Meteor Tips web site:

curl https://install.meteor.com/ | sh

Curl's --help hasn't relieved anything useful. Does anyone know how to do this?

Abirritant answered 6/3, 2016 at 16:33 Comment(2)
Do you want to remove meteor? Or iron-router package from meteor?Czechoslovak
Iron router. I looks like the meteor I install in additional to the iron router can be simply deleted.Abirritant
C
1

You can remove a package from meteor project, either in command line or by deleting it from ./meteor/packages file.

So to remove iron:router just type in terminal:

meteor remove iron:router

Or find iron:router in your .meteor/packages file and simply delete it.

Czechoslovak answered 17/3, 2016 at 10:23 Comment(0)
A
4

You can uninstall meteor with the following commands

rm -rf ~/.meteor/

sudo rm /usr/local/bin/meteor

Official instructions at https://github.com/meteor/meteor (search for uninstall)

Amr answered 6/3, 2016 at 17:45 Comment(1)
Note: This is not a one-size-fits-all approach for uninstalling all packages installed using curl. Check the package's documentation for instructions on uninstalling a specific package.Mongrelize
C
1

You can remove a package from meteor project, either in command line or by deleting it from ./meteor/packages file.

So to remove iron:router just type in terminal:

meteor remove iron:router

Or find iron:router in your .meteor/packages file and simply delete it.

Czechoslovak answered 17/3, 2016 at 10:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.