0

I had privoxy installed on Ubuntu 20.04 and then I uninstalled it using apt remove privoxy.
Right now there isnt any directory or file named privoxy or service named privoxy but when I try to install a pip or yarn package in terminal it tells me it was blocked by Privoxy
What can I do to remove it completely?

1 Answers1

0

Your command should be:

$ sudo apt-get remove --auto-remove privoxy

reference

If that doesn't completely remove it,you can also try sudo apt --purge autoremove

graham
  • 13,061