forked from metabrainz/picard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL.txt
70 lines (44 loc) · 1.55 KB
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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.