/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/en/user-guide/installing_bazaar.txt

  • Committer: Martin von Gagern
  • Date: 2010-04-20 08:47:38 UTC
  • mfrom: (5167 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5195.
  • Revision ID: martin.vgagern@gmx.net-20100420084738-ygymnqmdllzrhpfn
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
get things working.
53
53
 
54
54
 
 
55
Installing into site-wide locations
 
56
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
57
 
 
58
Instead of adding the directory to your PATH, you can install bzr into the
 
59
system locations using::
 
60
 
 
61
  python setup.py install
 
62
 
 
63
If you do not have a compiler, or do not have the python development tools
 
64
installed, bzr supplies a (slower) pure-python implementation of all
 
65
extensions. You can install without compiling extensions with::
 
66
 
 
67
  python setup.py install build_ext --allow-python-fallback
 
68
 
 
69
 
 
70
 
55
71
Running the development version
56
72
-------------------------------
57
73
 
69
85
 
70
86
  2. Get a copy of the development version like this::
71
87
 
72
 
       bzr branch http://bazaar-vcs.org/bzr/bzr.dev
 
88
       bzr branch lp:bzr
73
89
 
74
 
  3. Put the created directory (bzr.dev) on your PATH.
 
90
  3. Put the created directory on your PATH.
75
91
 
76
92
Advanced users may also wish to build the optional C extensions for greater
77
93
speed. This can be done using ``make`` and requires ``pyrex`` and a C compiler.