I've installed a new version of node via n but the version that runs is still a old one. I don't know where I installed the old version, how can I go find it and uninstall it?
Asked
Active
Viewed 288 times
2 Answers
4
You can try this:
which node
And see where the executable is.

Blender
- 289,723
- 53
- 439
- 496
-
What is proper procedure to uninstall it once I know this information? – fancy Dec 22 '11 at 02:22
-
1http://stackoverflow.com/questions/5650169/uninstall-node-js-using-linux-command-line – Richard Holland Dec 22 '11 at 02:24
1
which node from the command line if Unix/OSX. 'where node' in Windows.

Richard Holland
- 2,663
- 2
- 21
- 35
-
-
@Blender: And `which node` should tell him where this old version is installed at... – Thilo Dec 22 '11 at 02:15
-
it would be /usr/bin/node. usr/bin would be relative to your current working directory. – Richard Holland Dec 22 '11 at 02:18
-