mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
commit
5fdf4004e0
1 changed files with 13 additions and 8 deletions
21
docs/faq.rst
21
docs/faq.rst
|
|
@ -135,15 +135,20 @@ it's helpful to run on the "bleeding edge". To run the latest source:
|
|||
|
||||
1. Uninstall beets. If you installed using ``pip``, you can just run
|
||||
``pip uninstall beets``.
|
||||
2. Install from source. There are a few easy ways to do this:
|
||||
2. Install from source. Choose **one** of the following methods:
|
||||
|
||||
- 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
|
||||
- **Use ``pip`` to install the latest snapshot tarball:**
|
||||
just type: ``pip install https://github.com/beetbox/beets/tarball/master``.
|
||||
- **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``.
|
||||
|
||||
- **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