Skip to content

Latest commit

 

History

History
73 lines (58 loc) · 2.6 KB

README.md

File metadata and controls

73 lines (58 loc) · 2.6 KB

LinkedIn

UEx-AudioPy2

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).

Table of contents

Getting started

The instructions below help you replicate this repository.

Prerequisites

Anaconda distribution is recommended. You can install it following the official installation guide.

Check if Anaconda is installed:

conda --version
conda -V

Installation

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

Usage

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! 😎

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details