Skip to content Skip to sidebar Skip to footer

Installing Pylibmc On Ubuntu

When running pip install pylibmc on Ubuntu, I get the following error: _pylibmcmodule.h:42:36: fatal error: libmemcached/memcached.h: No such file or directory

Solution 1:

sudo apt-get install libmemcached-dev zlib1g-dev

Solution 2:

Zags answer didn't do the trick for me on Ubuntu 13.10. libmemcached-dev had already been installed. I had to also do:

sudo apt-get install zlib1g-dev

Maybe that will help someone else.


Solution 3:

Install libmemcached using below command

sudo apt-get install libmemcached-dev zlib1g-dev

Then set the environment variable and install

LIBMEMCACHED=/opt/local pip install pylibmc

Post a Comment for "Installing Pylibmc On Ubuntu"