The time now is Sun 19 May 2013, 17:44
All times are UTC - 4 |
| Author |
Message |
afishe2000
Joined: 29 Jan 2010 Posts: 34
|
Posted: Sun 19 Aug 2012, 09:36 Post subject:
Slacko Puppy 5.3.3 - Installing Python & Setting up Tkinter Subject description: At least one easy way to make it work... |
|
I've set this up on a couple of machines now and thought I'd pass it along...
It may not be the most up to date libraries and such, but it works.
Installing Python:
Using Puppy Package Manager under the category System install python_plus-2.6.6-i486-s
After installing you will have the following missing libraries:
libtcl8.5.so libtk8.5.so libgoocanvas.so.3
Open a console and type "python" you should see:
#python
Python 2.6.6 (r266:84292, Nov 27 2010, 1947:39)
[GCC 4.5.1] on linux2
Type "help", "copyright", "credits" or "license for more information
>>>
(No errors in the python installation)
Type "quit()" to exit python
Cleaning up two of the missing libraries:
Goto http://dotpups.de/ITAmember/python/, download and install:
tcl-8.5.7-p4.pet
tk-8.5.7-p4.pet
Open a console and type "python" then "import Tkinter" you should see:
#python
Python 2.6.6 (r266:84292, Nov 27 2010, 1947:39)
[GCC 4.5.1] on linux2
Type "help", "copyright", "credits" or "license for more information
>>>import Tkinter
>>>
(No errors in the Tkinter installation)
Again type "quit()" to exit python
Goto http://packages.ubuntu.com/lucid/i386/libgoocanvas3/download, download and install
Getting Geany to execute Python programs:
Open Geany and select Edit > Preferences
In Tools change the Terminal to "/usr/bin/xterm -e ebash -c"
Testing Tkinter:
Open Geany and create a new document and enter
| Code: | from Tkinter import *
root = Tk()
w = Label(root, text="Hello, world!")
w.pack()
root.mainloop()
|
Save it as HelloWorld.py
Press the Execute button
The program should execute without errors
Reference Material:
http://www.pythonware.com/library/tkinter/introduction/index.htm
Useful Python Libraries
Basic setup instructions:
1. Download the source from one of the links below
2. Unpack the source distribution and change directory to the resulting top-level directory.
3. Type "python setup.py install"
http://www.crummy.com/software/BeautifulSoup/
http://wwwsearch.sourceforge.net/mechanize/
Last edited by afishe2000 on Tue 21 Aug 2012, 12:21; edited 1 time in total
|
|
Back to top
|
|
 |
darkcity

Joined: 23 May 2010 Posts: 2215 Location: near here
|
Posted: Sun 19 Aug 2012, 11:14 Post subject:
|
|
nice work added link to wiki
http://puppylinux.org/wikka/Python
does libgoocanvas need compiling, its part of gtk?
http://packages.ubuntu.com/lucid/libgoocanvas-dev
_________________ Wiki Audacity 2.0.1
|
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 2457 Location: Ontario
|
Posted: Mon 20 Aug 2012, 16:02 Post subject:
|
|
I was able to get mypaint to work on oldyeller's version of Precise 2.60
(I haven't tested his latest version)
Mypaint is available HERE
_________________________________________________
|
|
Back to top
|
|
 |
afishe2000
Joined: 29 Jan 2010 Posts: 34
|
Posted: Tue 21 Aug 2012, 12:16 Post subject:
|
|
Thank you for the link.
I downloaded and installed, no compiling and no problem.
I'll edit the original post to include it.
|
|
Back to top
|
|
 |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|
[ Time: 0.0529s ][ Queries: 12 (0.0068s) ][ GZIP on ] |