Installation

In order to start using the apiaudio package, you should begin by installing it.

pip install apiaudio -U
yarn add apiaudio
//or 
npm install --save apiaudio

For Python: pip is a link to pip3 if there is no other version of python installed (other than python3). If you have several python versions installed, you might need to specify pip3 to be used, as follows:

pip3 install apiaudio -U

👍

Python Pro Tip

If your pip is pointing to python 2.7, (you can check this with python -v) we recommend you either use a python version manager (i.e. pyenv) or create an alias alias pip=pip3 in your ~/.bash_profile file (if you use bash) or in your ~/.zprofile file if you use zsh.