After installing bzr, can you access the command line version of it? That's really all you need to get the sources and periodically sync them. I have a strong feeling that you went the wrong way by trying to use a GUI frontend (this is totally IMHO, because you are following the leo docs).
If you type 'bzr' in a command prompt and get output similar to this: Bazaar -- a free distributed version-control tool http://bazaar-vcs.org/ Basic commands: bzr init makes this directory a versioned branch bzr branch make a copy of another branch bzr add make files or directories versioned bzr ignore ignore a file or pattern bzr mv move or rename a versioned file bzr status summarize changes in working copy bzr diff show detailed diffs bzr merge pull in changes from another branch bzr commit save some or all changes bzr send send changes via email bzr log show history of changes bzr check validate storage bzr help init more help on e.g. init command bzr help commands list all commands bzr help topics list all help topics it means that you can use it. If you go to https://code.launchpad.net/leo-editor, you'll see a hint there about getting the source code: bzr branch lp:leo-editor Before doing this, navigate to a proper directory where you want to keep the leo repository. After the command finishes, you will have a leo-editor directory. cd into it. For further updates, do a 'bzr pull' while being in this directory. If you do it immediately, no more changes will be retrieved, because you've got a fresh copy when branching. Doing this on a daily basis will retrieve only the latest changes from launchpad. You have a python script called launchLeo.py - this is the leo launcher. I don't know why is leo/core/leo.py mentioned in the docs, perhaps it's obsolete and should be fixed, but my repo doesn't have such a file. -- You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en.
