Richard Kaye wrote: > I'm pretty much a complete newbie here so be gentle. Where would I start > to troubleshoot this? > > I attempted to install the latest Dabo framework following the > instructions on the download page. After unzipping the distrib, I ran > this command from the root Dabo folder: > > python setup.py install > > This is the traceback result I received: > > Traceback (most recent call last): > ...
It might be an python 2.6 issue. As a workaround you could create a file "dabo.pth" in your python site-packages folder (c:\yourpath2python\Lib\site-packages). For your case dabo.pth should contain the line: c:\dabo\dabo This method is also explained in: http://dabodev.com/wiki/InstallationOnWindows To test your dabo.pth, run: python.exe -c "import dabo" If you do not get an import error, your dabo.pth is fine. 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/[email protected]
