mirror of https://github.com/coqui-ai/TTS.git
5 lines
129 B
Plaintext
5 lines
129 B
Plaintext
|
#!/bin/bash
|
||
|
virtualenv -p python3 ../tmp/venv
|
||
|
source ../tmp/venv/bin/activate
|
||
|
pip install --no-cache-dir -r requirements.txt
|