Re: [Pythonmac-SIG] Fink vs MacPorts vs Framework

2009-06-30 Thread genemartin
Thanks but I do not want MacPorts or fink, I want to do it myself with only the tools of mac os x -- View this message in context: http://www.nabble.com/Fink-vs-MacPorts-vs-Framework-tp24271594p24278207.html Sent from the Python - pythonmac-sig mailing list archive at Nabble.com. _

Re: [Pythonmac-SIG] Fink vs MacPorts vs Framework

2009-06-30 Thread genemartin
My experience shows me that using fink or macports with python framework create problems with version mismatches and library duplication. So now, I only use the framework because i want to learn. With a little patience and trying a lot (with the help of google), I gradually install what I want,

Re: [Pythonmac-SIG] Gtk issues

2009-06-08 Thread genemartin
i type PKG_CONFIG_PATH=/Library/Frameworks/GLib.framework/Resources/dev/lib/pkgconfig:/Library/Frameworks/Gtk.framework/Resources/dev/lib/pkgconfig:/Library/Frameworks/Cairo.framework/Resources/dev/lib/pkgconfig:/Library/Frameworks/Python.framework/Versions/2.5/lib/pkgconfig: ./configure --prefi

Re: [Pythonmac-SIG] Gtk issues

2009-05-31 Thread genemartin
see my post on installing gtk and pygtk without Macports or Fink. http://www.nabble.com/PyGTK-on-OSX--to21186327.html#a22451916 http://www.nabble.com/PyGTK-on-OSX--to21186327.html#a22451916";>PyGTK on OSX? I don't use Fink or MacPorts because I want to compile myself to learn and they interfe

Re: [Pythonmac-SIG] sqlite and python

2009-03-25 Thread genemartin
In python 2.5 there is no pysqlite but sqlite3 use for test try: from sqlite3 import dbapi2 as sqlite # python 2.5 except: try: from pysqlite2 import dbapi2 as sqlite #python < 2.5 except: print 'This program requires pysqlite2\n',\ 'http://initd.org/tracker/pysqlite/'

Re: [Pythonmac-SIG] PyGTK on OSX?

2009-03-11 Thread genemartin
I managed to install pygtk (not the last version)on my mac with framework of http://www.gtk-osx.org/ using following procedures: (from http://developer.imendio.com/node/264) 1) install pycairo 1.6.4 (working well with the framework) PKG_CONFIG_PATH=/Library/Frameworks/GLib.framework/Resources/dev/