Has anyone tried to install Jonathan Slenders awesome ptpython to Pythonista?
I was able to get it installed through StaSh, but the main install script didn't get installed. When I looked at what it actually did on my desktop, thought it should be easy, but ...
Here is what the code looks like:
import re
import sys
from ptpython.entry_points.run_ptpython import run
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(run())
But when I run it, I get "*Error: No module named entry_points.run_ptpython***" even though I can find the correct package in the site-package directory.
Anyone have a idea of what I might try?
Thanks!
Mike