6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kivyのインストール

Last updated at Posted at 2014-09-22

PythonでiPhoneアプリを含めてクロスプラットフォーム開発する上ではKivyを使うのが良いらしいのでインストールすることにした.

以下の記事を参考にした.
http://kuroneko0208.hatenablog.com/entry/2014/03/15/163924

自分の環境はvirtualenvを使ってpython環境を区分けしているので微妙に違う部分もあるけど基本的には同じ.

  1. cythonインストール
  • pygameインストール
    (※パッケージの前提条件を自分の環境は満たしていたので追加インストールなし)
  • kivyインストール

コマンド的には以下のとおり


pip install cython
pip install hg+http://bitbucket.org/pygame/pygame
pip install git+https://github.com/kivy/kivy.git


途中でpythonのsetuptoolsのバージョンが古くて怒られたが


The required version of setuptools (>=1.1.6) is not available,
'easy_install -U setuptools'.
(Currently using setuptools 0.6c11 (/Users/hogeuser/.virtualenvs/python_brew/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg))
The required version of setuptools (>=1.1.6) is not available,

'easy_install -U setuptools'.
(Currently using setuptools 0.6c11 (/Users/hogeuser/.virtualenvs/python_brew/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg))


対策前進で問題なし


$ easy_install -U setuptools


6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?