Installing pylibmc on Ubuntu

Viewed 14629

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
3 Answers
sudo apt-get install libmemcached-dev zlib1g-dev
Related