Glam Prestige Journal

Bright entertainment trends with youth appeal.

A little while ago, I installed Node.js version 0.2.1 using these commands on Mac OSX:

./configure
make
sudo make install 

I recently installed Homebrew, so now my preference is to use it to manage my installs. I installed Node.js version 0.4.5 today with the following command:

brew node

But I noticed that I've still got the old version of Node.js lying around in these directories:

/usr/local/include/node/
/usr/local/lib/node/

What is the proper way to uninstall Node.js that was installed using the sudo make technque?

Thanks in advance

4 Answers

There is no "proper" way. The make install just puts the files directly in place and there's no manifest to track what was installed as of that. You just need to find the relevant files and delete them.

One thing you can do is find the files created within a couple of minutes of the binary you know is part of the package, since that will give you a starting point for you to filter down.

2

Go to the folder from where you installed node using make install and type

make uninstall
1

If you happened to have used brew to install it initially (), you can use the command:

brew uninstall node

In my case, this worked for me.

Method 1

From the source folder:

#make uninstall

Method 2

If there is no uninstall procedure:

  1. open install_manifest.txt (created by #make install)

  2. remove all the directories/files listed

  3. remove any remaining files you missed: #xargs rm < install_manifest.txt

  4. remove any hidden directories/files: $rm -rf ~/.packagename

Remove the source folder.

Method 3

If none of the above options work, view the install procedure:

#make -n install

and reverse the install procedure:

  1. Uninstall all software packages installed, by e.g. #yum remove packagename
  2. #rm -rf all directories/files created

Example

For example, this is how to uninstall nodejs, npm, and nvm from source:

which you can apply the above methods to.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy