I have just installed a personal package archive from NodeSource by running
curl -sL https://deb.nodesource.com/setup | sudo bash -
I would like to know how to remove this. After looking at other answers, I tried without success:
sudo add-apt-repository --remove ppa:nodesource
Any suggestions?
ppa-purge
command that is 'safer' thanadd-apt-repository --remove
– Thomas Ward Jun 17 '15 at 12:53ppa-purge
marks the repository as inactive, so removing it later is not required. – Charles Green Jun 17 '15 at 13:13