Sophie

Sophie

distrib > Mandriva > 2010.1 > i586 > by-pkgid > b51c365e8ef8cd1613486298598f0eda > files > 156

picard-0.16-2mdv2010.2.i586.rpm

MusicBrainz Picard Installation
===============================

Dependencies
------------

Before installing Picard, you need to have these libraries:

 * Python 2.5 or newer (Picard will not work with Python 3)
   http://python.org
 
 * PyQt 4.5 or newer
   http://www.riverbankcomputing.co.uk/software/pyqt/intro
   http://www.trolltech.com/products/qt/

 * Mutagen 1.20 or newer
   http://code.google.com/p/quodlibet/wiki/Development/Mutagen

 * libdiscid (optional)
   Required for CD lookups.
   http://musicbrainz.org/doc/libdiscid

 * FFmpeg (optional)
   Required for audio fingerprinting.
   http://ffmpeg.mplayerhq.hu/

 * libofa (optional)
   Required for audio fingerprinting.
   http://code.google.com/p/musicip-libofa/


Installation
------------

After installing the dependencies, you can install Picard by running:

  python setup.py config
  sudo python setup.py install

This will automatically build and install all required Python modules. To
start Picard now you can use:

  picard


Running From the Source Tree
----------------------------

If you want to run Picard from the source directory without installing, you
need to build the C extensions and locales manually:

  python setup.py config
  python setup.py build_ext -i
  python setup.py build_locales -i

And to start Picard use:

  python tagger.py


Running the Test Suite
----------------------

To run the included tests, follow the instructions for "Running From
the Source Tree".  Afterward you can run the tests using setup.py:

  python setup.py test

Alternatively, use a test runner such as nose.