File: INSTALL

package info (click to toggle)
audiotools 3.1.1-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 18,308 kB
  • sloc: ansic: 417,746; python: 59,093; xml: 1,639; makefile: 303; sh: 99
file content (55 lines) | stat: -rw-r--r-- 1,893 bytes parent folder | download | duplicates (2)
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
			Installation Procedure

To install Python Audio Tools, you simply need to run:

make install

as root from this source directory. This will use the Python interpreter
to install the audiotools Python module and the executable scripts.
It will then install the man pages from the doc/ subdirectory.

To verify your Python Audio Tools installation, run:

audiotools-config

as a normal user. This will load the audiotools Python module,
if possible, and deliver a listing of available audio formats and
current system settings.


		     Fixing Installation Problems

* The audiotools.cdio module doesn't build correctly

  Check that you have the CDIO library installed, commonly known as libcdio
  If libcdio is installed the module still doesn't build, ensure that
  you've also installed any accompanying libcdio-devel package.


* audiotools-config lists formats as unavailable

  Certain audio formats require external programs. For instance,
  to use FLAC files, Python Audio Tools requires the flac and metaflac
  programs. If these cannot be found in the regular executable search path
  or from the config file, you will not be able to use that format.
  Check your system's package manager for programs which may be available
  but not yet installed.


* My Python interpreter isn't found, or I wish to use a different one

  The first line of Makefile is which Python interpreter is being used for
  installation of both the Python Audio Tools and Construct module.
  For instance, to use a Python interpreter located at
  /opt/python/bin/python, you should change that line to read:

  export PYTHON = /opt/python/bin/python

  Running make will then invoke the new interpreter for installation of
  the audiotools module and scripts.



For additional information, please see the complete manual in the "docs"
subdirectory named "audiotools_letter.pdf" and "audiotools_a4.pdf".