1

autopy.hのインストールに問題があるようです

https://github.com/msanders/autopy/#introduction

私はすでにgit経由でインストールを試しました:

$ git clone git://github.com/msanders/autopy.git
$ cd autopy
$ python setup.py build

しかし、次のエラーが発生します。

>python setup.py build 
running build
running build_py
running build_ext
building 'color' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DNDEBUG=1 -DMM_LITTLE_ENDIAN -DUSE_X11 -I/usr/include/python2.6 -c src/autopy-color-module.c -o build/temp.linux-i686-2.6/src/autopy-color-module.o -Wall -Wparentheses -Winline -Wbad-function-cast -Wdisabled-optimization -Wshadow
In file included from src/autopy-color-module.c:1:
src/autopy-color-module.h:5:20: error: Python.h: No such file or directory
In file included from src/autopy-color-module.c:1:
src/autopy-color-module.h:11: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘initcolor’
...
src/autopy-color-module.c:48: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
error: command 'gcc' failed with exit status 1

それで

src / autopy-color-module.h:5:20:エラー:Python.h:そのようなファイルまたはディレクトリはありません

不足している。これはubuntuが私を嫌っているからですか、それともソフトウェアがgitからコンパイルできないからですか?Easy_installは、残念ながら/usr/local/lib/python2.6/dist-packages/私が持っていないアクセスを必要とします。ライブラリをローカルでコードにインポートしたいと思っていました。

4

1 に答える 1

5

Pythonの開発ヘッダーがありません。Ubuntuを使用しているので、python-devパッケージをインストールするだけです。

apt-get install python-dev
于 2012-06-13T15:49:44.430 に答える