On Fri, Nov 1, 2013 at 7:27 PM, olatunde Adebayo <nopo...@yahoo.com> wrote:

> Hi everybody.
> I am trying to run a program that has been successfully run on
> codeskulptor using window power shell:
> The problem is "import simplegui",
> How can I access"import simplegui" using powershell
>
>
SimpleGui is a python module which was developed for the Python course on
Coursera. As Alan mentioned, it is not part of the python standard
distribution. That module only works when code is written and execute on
their online code editor  - http://www.codeskulptor.org.

I did find a python package called SimpleGUICS2Pygame available at
https://pypi.python.org/pypi/SimpleGUICS2Pygame/
which is a re-implementation of the SimpleGui module. As it says on the
module page -

Simply change
   import simplegui
by
   import SimpleGUICS2Pygame.simpleguics2pygame as simplegui
in your CodeSkulptor program and run it in standard Python with this module

Hope that help
-Srini
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to