Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.23 KB

intallation.md

File metadata and controls

37 lines (29 loc) · 1.23 KB

libquantum installation

This section covers the basics on how to install and upgrade the libquntum library.

Installing and upgrading liquantum with pip

The libquantum library can be installed using pip. The pip distribution and current RedPandas version can be found at PyPI libquantum.

The following command can be used to install and/or upgrade libquantum:

pip install libquantum --upgrade

Verifying the installation

To check if the libquantum library has been installed correctly:

pip show libquantum

The terminal should return the name of the module, version, summary, home-page, author, author email, license, location of the installed module and requires. An example is shown below:

Name: libquantum
Version: 1.1.2
Summary: Library for implementing standardized time-frequency representations.
Home-page: https://github.com/RedVoxInc/libquantum
Author: RedVox
Author-email: dev@redvoxsound.com
License: Apache
Location: /path/where/module/is/installed
Requires: numpy, pandas, librosa, scipy, matplotlib, libwwz, redvox
Required-by: redvox-pandas

Return to main page.