On Saturday 17 February 2007 23:35, Douglas Kennedy wrote: > Dabo user's, > > Help!!! > > While trying to setup Dabo for use I have watched the screencasts ad they > are helpful. I am trying to follow along with the appwizard screencast. I > am using windows XPpro. I think I have loaded everything I have followed > the wiki instructions on loading Dabo to a windows PC. I get the following: > C:\daboide\wizards\appwizard>\python24\python appwizard.py > Taceback <most recent call last>: > File appwizard.py , line 6, in ? > import dabo > ImportError: No module named dabo > > I am sure that I am looking right at the problem, I still do not see it > though. > > I do appreciate what I have seen see in the screencasts and online > material. Although, I would greatly appreciate some straight forward > directions. I have Googled the ImportError: No module named dabo and read > a discussion about being able to do it in four or five lines a discussion > that provided no direction for the problem I am having. With most things > new I can only be considered dangerous regarding Dabo at this point. > Thanks, > > Doug
Python needs to know where you have installed Dabo. The easiest way to tell python how to find dabo is to use a "pth" file. So you have to create a file that contains a single line similar to "C:\dabo" and name the file "dabo.pth". The file contains nothing more that the location of where you installed dabo. You also need to save the file in the right location - "site packages". Or in your case similar to "C:\python24\lib\site packages". You can test if you have done everything correctly by starting python and typing "import dabo" on the first line. If it worked you will not get an error message. -- John Fabiani _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
