It seems that Kivy is better for cross-platform development including iPhone applications with Python, so I decided to install it.
I referred to the following article. http://kuroneko0208.hatenablog.com/entry/2014/03/15/163924
Since my environment uses virtualenv to divide the python environment, there are some subtle differences, but they are basically the same.
The command is as follows
pip install cython pip install hg+http://bitbucket.org/pygame/pygame pip install git+https://github.com/kivy/kivy.git
On the way, the version of python setuptools was old and I got angry
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))
There is no problem in advancing measures
$ easy_install -U setuptools
Recommended Posts