7

virtualenv に pip 経由で PIL をインストールしようとしています。ただし、このエラーが発生します。

C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IlibImaging -Ic:\My_Pro
jects\testenv\include -Ic:\My_Projects\testenv\PC /Tc_imaging.c /Fobuild\temp.win32-2.7\Release\_imaging.obj

_imaging.c

_imaging.c(75) : fatal error C1083: Cannot open include file: 'Python.h': No such file or directory

error: command '"C:\Program Files\Microsoft Visual Studio 9.0\VC\BIN\cl.exe"' failed with exit status 2

----------------------------------------
Command c:\My_Projects\testenv\Scripts\python.exe -c "import setuptools;__file__='C:\\My_Projects\\testenv\\pinax-solcia
l-site\\build\\PIL\\setup.py';execfile(__file__)" install --single-version-externally-managed --record c:\users\darren\a
ppdata\local\temp\pip-fdzgwn-record\install-record.txt failed with error code 1
Storing complete log in C:\Users\Darren\AppData\Roaming\pip\pip.log

python-dev のインストールを提案するこの質問を調べましたが、そのユーザーは Ubuntu を使用していました。Windows 7 を使用していますが、問題の解決方法がわかりません。

ありがとう。

4

1 に答える 1

1

VisualStudio コンパイラが Python 開発ソースを見つけていないようです。たぶん、特定の環境変数を設定する必要がありますか?

このブログ投稿は、パスにc:\Python27andを追加する必要があることを示唆しているようです。c:\Python27\bin多分それが欠けているのですか?

PIL は、 に問題があることでも知られていますsetuptoolsは試しましたか?

于 2013-04-20T09:48:29.480 に答える