user1471980
user1471980

Reputation: 10656

how do you unistall a python package/library

I installed python-memcached

/usr/local/lib64/python2.6/site-packages/python_memcached-1.54-py2.6.egg

Now, I am having some problems with my django webserver, getting server 500 error.

How do I uninstall python-memcached?

Upvotes: 0

Views: 675

Answers (1)

g_uint
g_uint

Reputation: 2041

On Suse linux you can use yum:

yum remove python-memcache

Upvotes: 1

Related Questions