~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Andrew Bennetts
  • Date: 2006-09-12 06:30:01 UTC
  • mto: (1910.11.2 open_from_transport)
  • mto: This revision was merged to the branch mainline in revision 2006.
  • Revision ID: andrew.bennetts@canonical.com-20060912063001-7f832d0244311ed5
Sort os.listdir results in add.py.

Some filesystems (like ext3 with the 'dir_index' option set) don't necessarily
return directory listings in alphabetical order, contrary to what some tests
assume.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
bzr install instructions
 
2
************************
 
3
 
 
4
Dependencies
 
5
------------
 
6
 
 
7
bzr requires Python2.4 and cElementTree:
 
8
 
 
9
  http://effbot.org/zone/element-index.htm
 
10
 
 
11
If you wish to access branches over sftp, you will need paramiko and
 
12
pycrypto:
 
13
 
 
14
  http://www.lag.net/paramiko/
 
15
 
 
16
Installation
 
17
------------
 
18
 
 
19
To install bzr as a user, run
 
20
 
 
21
  python setup.py install --home ~ 
 
22
 
 
23
To install system-wide, run (as root)
 
24
 
 
25
  python setup.py install
 
26