Research Group - Production
In order to run the App simply run:
python main.py
The application was developed with Python 3.7/8, but should work with other 3.x versions of Python.
The sampler runs using the CSound library which needs to be installed here:
https://csound.com/download.html
Note: Do not install python 2.x bindings. This will cause a crash when calling librosa/numba. numba/numba#6862
To set up the conda venv run the following commands:
conda env create -f environment.yml
conda activate osr
To create your python venv run:
python -m venv venv
source venv/bin/activate (Unix)
venv\Scripts\activate.bat (Windows)
To create your env run
conda create -n venv python=3.8
Install dependencies with pip directly on your venv
pip install -r requirements.txt