I'd like to install python-pythonmagick package http://packages.debian.org/squeeze/python-pythonmagick
but when I run pip install
or easy_install
python-pythonmagick, it fails to find the package.
I guess I can add a url to /etc/apt/sources.list
What's the url that I want to add to this file?
That is a Python package that is maintained by the Debian repo. You can install it with the Debian package manager:
or
However, I would prefer to stick with
pip
(withvirtualenv
) and use either of the following instead:Note that you will need to install
GraphicsMagick
/ImageMagick
itself with Debian's package manager separately if you are usingpip
.pgmagick
/pythonmagick
is just a Python wrapper forGraphicsMagick
/ImageMagick
.More: pgmagick
This is what worked for me on running vagrant on ubuntu...