This repository has been created for the second lab session on audio processing with Python of the Multimedia Systems subject at the University of Extremadura (UEx).
The instructions below help you replicate this repository.
Anaconda distribution is recommended. You can install it following the official installation guide.
Check if Anaconda is installed:
conda --version
conda -V
The file environment.yml contains all the necessary packages to use this project inside the environment with the name audiopy
provided. You can create a conda environment from the .yml file as follows:
conda env create -f environment.yml
Activate the conda environment:
conda activate <env_name>
where <env_name>
is the name of the conda environment we have just created. It appears in the first line of the file environment.yml; audiopy
in this particular case.
Add the conda environment to JupyterLab so that it appears as a kernel:
python3 -m ipykernel install --user --name=audiopy
Check that the kernel has been installed correctly:
jupyter kernelspec list
Now we can run JupyterLab and select audiopy
as the running kernel:
jupyter-lab
Alternatively, we can use Visual Studio Code.
Now that we have everything set up, we can start playing with this repository! 😎
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details