mirror of
https://github.com/beetbox/beets.git
synced 2026-01-05 07:23:33 +01:00
Update faq.rst
A couple of suggested modifications primarily to clarify that this unordered list is of **options** to install the latest version―not a series of commands to complete a single install. Also suggested a layout change to explain the series of commands in option b.
This commit is contained in:
parent
7409463bf8
commit
950dbe3b9f
1 changed files with 10 additions and 7 deletions
17
docs/faq.rst
17
docs/faq.rst
|
|
@ -137,13 +137,16 @@ it's helpful to run on the "bleeding edge". To run the latest source:
|
|||
``pip uninstall beets``.
|
||||
2. Install from source. There are a few easy ways to do this:
|
||||
|
||||
- Use ``pip`` to install the latest snapshot tarball: just type
|
||||
``pip install https://github.com/beetbox/beets/tarball/master``.
|
||||
- Grab the source using Git:
|
||||
``git clone https://github.com/beetbox/beets.git``. Then
|
||||
``cd beets`` and type ``python setup.py install``.
|
||||
- Use ``pip`` to install an "editable" version of beets based on an
|
||||
automatic source checkout. For example, run
|
||||
- **Option 1** - Use ``pip`` to install the latest snapshot tarball:
|
||||
just type: ``pip install https://github.com/beetbox/beets/tarball/master``.
|
||||
- **Option 2** - Grab the source using Git:
|
||||
|
||||
1. First clone the repository ``git clone https://github.com/beetbox/beets.git``.
|
||||
2. Then enter the beets directory ``cd beets``
|
||||
3. Finally install ``python setup.py install``.
|
||||
|
||||
- **Option 3** - Use ``pip`` to install an "editable" version of beets based on an
|
||||
automatic source checkout. For example, run:
|
||||
``pip install -e git+https://github.com/beetbox/beets#egg=beets``
|
||||
to clone beets and install it, allowing you to modify the source
|
||||
in-place to try out changes.
|
||||
|
|
|
|||
Loading…
Reference in a new issue