mirror of
https://github.com/pstrueb/piper.git
synced 2026-06-03 02:17:01 +00:00
14 lines
295 B
Bash
Executable File
14 lines
295 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
this_dir="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
if [ -d "${this_dir}/.venv" ]; then
|
|
source "${this_dir}/.venv/bin/activate"
|
|
fi
|
|
|
|
cd "${this_dir}/piper_train/vits/monotonic_align"
|
|
mkdir -p monotonic_align
|
|
cythonize -i core.pyx
|
|
mv core*.so monotonic_align/
|