Node based realtime audio processing
Create the complete development environment with a single command
conda env create -f environment.ymlActivate the new environment
conda activate anode-devThis command does two magic things:
- Triggers scikit-build-core, which runs CMake to compile C++ code.
- Installs Python package in a way that any changes to the .py files are immediately reflected without needing to reinstall.
pip install -e . -vpython main.pyconda deactivate anode-dev
conda env remove --name anode-dev