Running setup.py install for kivy: finished with status ‘error’

Python

pythonのKivyをインストールしようと思ったら以下のようなエラーに遭遇。

Running setup.py install for kivy: finished with status 'error'
Complete output from command /usr/local/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-install-ax0jxsyz/kivy/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-record-o0tbf1f4/install-record.txt -

どうもsetuptoolsのところに問題があるよう。


pip install --upgrade pip setuptools
 

setuptoolsを更新することで解消。
ソースから古いバージョンのpython,pipを利用していて起きたので、そういう場合は気にした方がが良いかも。

タイトルとURLをコピーしました