Brian Blais wrote: > Hello, > > I've decided to try to learn dabo, specifically for the ui components. > I say again, because I have tried a couple of times in the past, and > have been plagued by errors, and install issues. This time, I decided > to join the users list, and brute my way through this, because I keep > hearing great things about it. Normally I use wax, but it is not being > developed anymore. > > Ok, so now to the current issues. I downloaded the latest stable, > following the website: > > svn checkout http://svn.dabodev.com/dabo/tags/dabo-0.8/ dabo > svn checkout http://svn.dabodev.com/dabodemo/tags/dabodemo-0.7.2/ dabodemo > > > I'm running Python 2.5, on Linux (Kubuntu), but I get the same problem > on my new Mac. I noticed that the version numbers for the demo are > different, but thought "some of the advanced features probably won't > work, but I should be able to run most of it.". Installing dabo was no > problem, then in the dabodemo directory, under wxPython-demos, I do: > > python demo.py > > and get: > > AttributeError: 'module' object has no attribute 'dEvents' > > (full error copied below). > > > any ideas about what is going wrong? should I install things differently? >
Ok, you downloaded dabo and dabodemo by svn. How did you install it? Did you read: http://dabodev.com/wiki/InstallingDabo The easies way to install the dabo module is to add a link in your python site-packeges directory (note that you have to use your python site-package location): cd /usr/lib/python2.5/site-packages ln -s /pathtoyour-dabo-dir/dabo dabo After you did this, test your newly created link by importing dabo in your python interpreter. Uwe _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
