Lukasz Szybalski wrote: > On Dec 10, 2007 11:22 PM, Paul McNett <[EMAIL PROTECTED]> wrote: >> Lukasz Szybalski wrote: >> >>> there is no setup.py >> There is if you check out the root of the trunk (you checked out >> trunk/dabo). Follow this link and you'll see: >> >> http://svn.dabodev.com/dabo/trunk >> >> Now remove the directories you've checked out and do this instead: >> >> # Note the lack of slash between trunk and dabo: >> svn checkout http://svn.dabodev.com/dabo/trunk dabo >> >> cd dabo >> sudo python setup.py install >> > Thanks, that worked. My previous checkout was based on the website > instructions. (http://dabodev.com/wiki/InstallationOnLinux) > > Instructions for Debian dabo install are then: > ------------- > The instructions on the website should change and say: (debian > python-wgtk2.6, ubuntu 2.8 i believe) >
It's better to use wxgtk-2.8 since it is better supported than the previous 2.6. > sudo apt-get --yes install python-reportlab python-wxgtk2.6 subversion > python-mysqldb > > svn checkout http://svn.dabodev.com/dabo/trunk dabo > > cd dabo > sudo python setup.py install > ---------------- > > If I wanted to install it locally in my account. Without sudo access? > What would be the setup command for that? 1: Instead of using setup.py you can create a symlink from yourpython/site-packages/dabo to your local installed dabo directory. eg.: cd yourpython/site-packages sudo ln -s yourlocaldabotrunk/dabo dabo 2: Drop a file dabo.pth in yourpathon/site-packages directory. see: http://dabodev.com/wiki/InstallationOnWindows Installing Dabo as a python module. Using dabo.pth will work for linux too. 3. If you are not able to use sudo the only solution will be to use the environment variable PYTHONPATH. See: http://docs.python.org/tut/node8.html#SECTION008110000000000000000 Method 3. is the only one without using sudo. But how would you get the required modules installed? 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]
