Rich Shepard wrote: > On Wed, 21 Feb 2007, Uwe Grauer wrote: > >> dabo.pth is for dabo itself. > > Uwe, > > And that's in ../site-packages/ anyway. > >> Start ReportDesigner with: >> python pathtodaboide/ReportDesigner.py > > That's what I did. I mis-understood the role of the .pth file. > > Thanks, > > Rich >
But you import parts of dabo and ReportDesigner is a program. What you can do is creating a shortcut for ReportDesigner. I show you how i do it: I have a directory ~/bin which is part of my PATH: PATH=/home/uwe/bin:restofofmypath In my ~/bin dir i have files like daboReportDesigner: . ~/bin/.daboidepath echo $* python $DABOIDEPATH/ReportDesigner.py $* In the file ~/bin/.daboidepath i have: export DABOIDEPATH=~/src/daboide This way i can start ReportDesigner with daboReportDesigner from everywhere. The file .daboidepath is for switching between different versions of the daboide, so i do not have to edit all dabo shortcut files. Uwe _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
