This is amazing that you were able to get that set up so quickly. I have actually been trying to get it all together for a couple days now. I would have never thought of building it on my Mac first. I am going to try that approach with a couple other things I'd like to try in the future..
I do get an error trying to run the hello world though.
On line 5 i get :
DistutilsPlatformError:Invalid Python Installation: unable to open /var/mobile/applications/lib/python2.7/config/makefile (no such file or directory)
I thought I read in another post that distutils was broken and there was something added to the pipista.py script that sort of patched it. Do I need to do something with that before running the hello world?
Oh and thank you for getting that put together like that. I would have been at it all weekend.
Edit:
More on the error.. I did this in the console to see if there was more info...
import sys
sys.path.append('muntjac_pythonista')
import muntjac.api
Traceback (most recent call last):
File "", line 1, in
File "muntjac_pythonista/muntjac/api.py", line 17, in
from muntjac.application import Application
File "muntjac_pythonista/muntjac/application.py", line 24, in
from muntjac.util import EventObject, IEventListener, defaultLocale
File "muntjac_pythonista/muntjac/util.py", line 21, in
import paste.webkit
File "muntjac_pythonista/paste/init.py", line 4, in
import pkg_resources
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Documents/pkg_resources.py", line 698, in
class Environment(object):
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Documents/pkg_resources.py", line 701, in Environment
def init(self, search_path=None, platform=get_supported_platform(), python=PY_MAJOR):
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Documents/pkg_resources.py", line 96, in get_supported_platform
plat = get_build_platform(); m = macosVersionString.match(plat)
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Documents/pkg_resources.py", line 224, in get_build_platform
plat = get_platform()
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Pythonista.app/pylib/distutils/util.py", line 98, in get_platform
cfgvars = get_config_vars()
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Pythonista.app/pylib/distutils/sysconfig.py", line 508, in get_config_vars
func()
File "/var/mobile/Applications/41061525-6601-4DED-9287-C1976C67C450/Pythonista.app/pylib/distutils/sysconfig.py", line 365, in _init_posix
raise DistutilsPlatformError(my_msg)
distutils.errors.DistutilsPlatformError: invalid Python installation: unable to open /var/mobile/Applications/lib/python2.7/config/Makefile (No such file or directory)