Skip to content

darvin/PythonTurtle

 
 

Repository files navigation

Homepage: http://pythonturtle.org A Windows installer is available from there.

PythonTurtle strives to provide the lowest-threshold way to learn Python. Students command an interactive Python shell (similar to the IDLE development environment) and use Python functions to move a turtle displayed on the screen. An illustrated help screen introduces the student to the basics of Python programming while demonstrating how to move the turtle.

Screen shot

Tested with Python 2.6 and wxPython 2.8.10.1. Currently tested only on Windows and Ubuntu.

This project is licensed under the MIT license.

Building

On Windows

You must have installed:

  • Python
  • wxPython
  • Distutils-extras
  • py2exe
  • Microsoft VC redistributable DLLs (say thanks to Billy for this hell) on c:/Program Files/Microsoft Visual Studio 9.0/VC/redist/x86/Microsoft.VC90.CRT or c:\Python27\vcruntime. Try get it here

Get PythonTurtle source code and in it's directory run: python setup.py py2exe

You get .exe and many files in ./dist directory

Building installer for Windows

  • Install InstallShield
  • Open pythonturtle.ism
  • Build project

On Linux

Debian/Ubuntu

sudo apt-get install python-distutils-extra python-stdeb 
git clone git@github.com:darvin/PythonTurtle.git
cd PythonTurtle
python setup.py --command-packages=stdeb.command bdist_deb

You will have .deb package in deb_dist directory

RPM-based distros

python setup.py bdist_rpm

You will have .rpm packages in dist directory

On Mac OS X

python setup.py py2app

Installing

On Windows

  • to be done

On Linux

Debian/Ubuntu

sudo dpkg -i pythonturtle-xxx.deb

About

A learning environment for Python suited for beginners and children, inspired by Logo.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%