Blame view
tools/extras/install_wpe.sh
443 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash # Installs nara-wpe with dependencies # miniconda should be installed in $HOME/miniconda3/ miniconda_dir=$HOME/miniconda3/ if [ ! -d $miniconda_dir ]; then echo "$miniconda_dir does not exist. Please run 'tools/extras/install_miniconda.sh" && exit 1; fi $HOME/miniconda3/bin/python -m pip install soundfile git clone https://github.com/fgnt/nara_wpe.git cd nara_wpe $HOME/miniconda3/bin/python -m pip install --editable . |