Trip
Sorry, but I suck at explaining stuff :P
So after all that work, the fix is simply..
Install tk-dev by putting sudo opkg install tk-dev into a terminal. Doesn't matter if it throws up errors about not installing things correctly, It should still give you everything you need to get this working.
Once tk-dev is installed, you can edit the listbox.tcl file by putting the following in a terminal..
sudo mousepad /usr/lib/tk8.4/listbox.tcl
..and commenting lines 178 through 198 out by placing a # in front of them and saving the changed file.
Then doing..
sudo mousepad /usr/lib/tk8.4/text.tcl
..and commenting out lines 453 through 474 and saving the file.
Start up python in the terminal, import turtle and test it out with turtle.forward(50).
Brilliant. Cheers for the fix
Install tk-dev by putting sudo opkg install tk-dev into a terminal. Doesn't matter if it throws up errors about not installing things correctly, It should still give you everything you need to get this working.
Once tk-dev is installed, you can edit the listbox.tcl file by putting the following in a terminal..
sudo mousepad /usr/lib/tk8.4/listbox.tcl
..and commenting lines 178 through 198 out by placing a # in front of them and saving the changed file.
Then doing..
sudo mousepad /usr/lib/tk8.4/text.tcl
..and commenting out lines 453 through 474 and saving the file.
Start up python in the terminal, import turtle and test it out with turtle.forward(50).
Brilliant. Cheers for the fix
Last edited by a moderator: