0

I want to completely uninstall Apache libcloud. Location of libcloud

/usr/lib/python2.7/dist-packages/libcloud

I have used this command to uninstall

sudo apt-get remove --auto-remove python-libcloud

Error while trying to install again

Requirement already satisfied (use --upgrade to upgrade): backports.ssl-match-hostname in /usr/local/lib/python2.7/dist-packages (from apache-libcloud==0.18.0)

Also, libcloud folder is not removed after uninstalling Please suggest a right way to uninstall.

Ffisegydd
  • 51,807
  • 15
  • 147
  • 125
Anurag
  • 73
  • 8
  • That depends a lot on how you installed it in the first place. You may want to add some information to your question. – cel Sep 23 '15 at 06:53
  • First time installation: apt-get install python-libcloud ,Second time upgrade: pip install --upgrade apache-libcloud==0.18.0 – Anurag Sep 23 '15 at 06:54

1 Answers1

2

pip uninstall <package-name>

From the pip reference page. First Google search result.

and

sudo apt-get uninstall --purge <package-name>

From this question or the official apt-get documentation

Regards,
Lisenby

Community
  • 1
  • 1
alisenby94
  • 64
  • 5