install.md (1089B)
1 # Install 2 3 This page contains information regarding installing ADTLib. It is suggested to install the package using [pip](https://pypi.python.org/pypi/pip). If pip is not already installed install it using: 4 5 easy_install pip 6 7 #### Required packages. 8 9 ADTLib requires the following packages to already be installed: 10 11 • [numpy](https://www.numpy.org) 12 • [scipy](https://www.scipy.org) 13 • [madmom](https://github.com/CPJKU/madmom) 14 • [tensorflow](https://www.tensorflow.org/) 15 16 If these are already installed install ADTLib using: 17 18 pip install ADTLib 19 20 To update the libary use: 21 22 pip install --upgrade ADTlib 23 24 25 If you do not already have the required packages the easiest way to install them all is to first install tensorflow using the instructions on the tensorflow github: 26 27 https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md 28 29 Then install ADTLib using the command above, this should install all remaining dependencies. 30 31 If problems occur try installing each package one by one using: 32 33 pip install <package_name> 34 35