Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulNdrei authored Nov 6, 2023
1 parent 783dcad commit 1383760
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,28 @@ RestFUL api and web interface to serve coqui TTS models

## Installation

The requirements are tested for python 3.7. In order for coqui TTS to work some dependencies should be installed.
The requirements are tested for python 3.7. In order for coqui TTS to work, some dependencies should be installed.

```
sudo apt-get install libsndfile1-dev espeak-ng
1. Update your system's package list and install the required packages for building eSpeak and general utilities:
```bash
sudo apt update && sudo apt install -y \
build-essential \
autoconf \
automake \
libtool \
pkg-config \
git \
wget \
cmake
```
2. Clone the eSpeak-ng repository and build it:
```bash
git clone -b dev-ca https://github.com/projecte-aina/espeak-ng
cd espeak-ng && \
sudo ./autogen.sh && \
sudo ./configure --prefix=/usr && \
sudo make && \
sudo make install
```

Later simply:
Expand Down Expand Up @@ -183,4 +201,4 @@ This work is funded by the [Generalitat de
Catalunya](https://politiquesdigitals.gencat.cat/ca/inici/index.html#googtrans(ca|en))
within the framework of [Projecte AINA](https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina).

<a target="_blank" title="Generalitat de Catalunya" href="https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina/"><img alt="Generalitat logo" src="https://bot.aina.bsc.es/logos/gene.png" width="400"></a>
<a target="_blank" title="Generalitat de Catalunya" href="https://politiquesdigitals.gencat.cat/ca/economia/catalonia-ai/aina/"><img alt="Generalitat logo" src="https://bot.aina.bsc.es/logos/gene.png" width="400"></a>

0 comments on commit 1383760

Please sign in to comment.