Installation instructions for zita-jacktools.
=============================================

Apart from the zita_jacktools tarball, you will need:

* Python, numpy
  The library will work with Python 2.7, but the examples
  all use Python 3. Note that the official Python 2 sunset
  was February 2020.

* libraries (and headers):

   * fftw3
   * zita-jclient
   * zita-resampler
   * zita-convolver

Install the required libraries first.
Then in the top directory: make; sudo make install.

Copy the examples directory to somewhere in your
home directory.

To run some of the examples you may need:

   * jaaa, jack_utils, jnoisemeter, zita-audiotools
   * scipy, matplotlib, pyqt5



A FOP (Frequently Occurring Problem) and its solution.
------------------------------------------------------

When you install shared libraries (e.g zita-jclient)
from source they will end up in /usr/local/lib or in
/usr/local/lib64.

Linux systems are usually not configured to look for
libraries in /usr/local, so things will fail.

The solution is simple. Do the following as root:

1. In the directory /etc/ld.so.conf.d, create a file
   called local.conf. This file should contain two
   lines:

/usr/local/lib
/usr/local/lib64

2. Run the command ldconfig.

If this doesn't help, reboot.

--
FA


