feat(installer): update prompts
This commit is contained in:
parent
b98e512bde
commit
29a386eb59
1 changed files with 2 additions and 6 deletions
|
|
@ -13,19 +13,15 @@ echo "Removing old installation if they exist"
|
|||
rm -rf $INSTALL_DIR/simple-tts
|
||||
rm $EXECUTABLE_BIN/tts
|
||||
|
||||
echo "Installing to: $INSTALL_DIR"
|
||||
|
||||
echo "Downloading simple-tts.tgz"
|
||||
curl --fail --show-error --location --progress-bar \
|
||||
-o $TEMP_DIR/simple-tts.tgz "$DOWNLOAD_URL"
|
||||
|
||||
tar -xzf $TEMP_DIR/simple-tts.tgz -C "$INSTALL_DIR"
|
||||
|
||||
python3 -m venv $INSTALL_DIR/simple-tts/.venv
|
||||
|
||||
# activate environment
|
||||
echo "Installing to: $INSTALL_DIR/simple-tts"
|
||||
python3 -m venv $INSTALL_DIR/simple-tts/.venv
|
||||
. $INSTALL_DIR/simple-tts/.venv/bin/activate
|
||||
|
||||
python -m pip install -r $INSTALL_DIR/simple-tts/requirements.txt
|
||||
|
||||
# deactivate environment
|
||||
|
|
|
|||
Loading…
Reference in a new issue