3

私の Windows 7 開発マシンの 1 つで、Python Image Library をインストールしようとしています。

私のマシンも同様です。どちらも Windows 7 Professional、x64 を実行します。どちらも Python 2.7.3 (32 ビット) を使用します。マシンの1つで正常にpip install PIL動作します。他方では、これで終わるトレースで失敗します:

build\temp.win-amd64-2.7\Release\_imaging.pyd.manifest : general error c1010070:
 Failed to load and parse the manifest. The system cannot find the file specified.

error: command 'mt.exe' failed with exit status 31

このエラーを解決するにはどうすればよいですか?

4

3 に答える 3

1

圧縮されたパッケージを pypi からダウンロードし、ビルドしてマシンにインストールしてみてください。このリンクは、いくつかのヒントを提供する可能性があります。それはあなたの問題だけを正確に扱いますが、インストールは異なります。

于 2012-09-14T06:14:25.390 に答える
1

探してここにたどり着いたなら

general error c1010070:
 Failed to load and parse the manifest. The system cannot find the file specified.

error: command 'mt.exe' failed with exit status 31

Windows 8/x64/Python 3.3/VS 11 で機能する回避策を次に示します。

# py 3.3 seems to be compiled against VS 2010 compiler, force using VS11 cl.exe for us
$env:VS100COMNTOOLS=$env:VS110COMNTOOLS

# Modify C:\Python33\lib\distutils\msvc9compiler.py
# Comment line 670:         ld_args.append('/MANIFESTFILE:' + temp_manifest)
# Basically it will instruct build to not look for manifest file
于 2013-09-09T06:39:01.473 に答える