tinnitus / conda_create.sh
vitorcalvi
first commit
ffc9ee0
raw
history blame contribute delete
324 Bytes
# 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"