Spaces:
Sleeping
Sleeping
# Create a new conda environment named 'noise-gen' | |
conda create -n noise-gen python=3.10 | |
# Activate the environment | |
conda activate noise-gen | |
# Install required packages | |
conda install numpy scipy pip | |
pip install gradio soundfile | |
# Verify installation | |
python -c "import gradio; import numpy; import scipy; import soundfile" |