I am a beginner at python, recently I want to install autopy in my Mac (Mavericks,10.9.4). I read many introductions and other people's questions. But I still cannot install the autopy successfully. My steps to install the autopy are as below:
git clone git://github.com/msanders/autopy.git
#include <OpenGL/gl.h>
at the seventh line of the autopy file "src/screengrab.c"cd autopy
python setup.py build
And here comes in the command window
src/png_io.c:3:10: fatal error: 'png.h' file not found
#include <png.h>
^
1 error generated.
error: command 'cc' failed with exit status 1
Do I need to rewrite the file address of "png.h" in the png_io.c?And what should I do to install the autopy on Mac?Do I have some important Omissions?
Try:
sudo apt-get install libpng-dev
I am installing autopy right now, and stuck at the same step. And after installing libpng-dev, the problem resolved. :)
The full process to install autopy is as follow
sudo apt-get install libx11-dev
to resolve "#include " not found errorsudo apt-get install libxtst-dev
to resolve "#include " not found errorsudo apt-get install libpng-dev
to resolve "#include " not found erroreasy_install autopy