Merge pull request #2616 from KathyReid/patch-1

Update to specify which package libpthread is in
This commit is contained in:
Reuben Morais 2019-12-24 08:03:36 +00:00 committed by GitHub
commit 85a61a3ab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,10 +12,10 @@ Inference using a DeepSpeech pre-trained model can be done with a client/languag
Running ``deepspeech`` might, see below, require some runtime dependencies to be already installed on your system:
* sox - The Python and Node.JS clients use SoX to resample files to 16kHz.
* libgomp1 - libsox (statically linked into the clients) depends on OpenMP. Some people have had to install this manually.
* libstdc++ - Standard C++ Library implementation. Some people have had to install this manually.
* libpthread - On Linux, some people have had to install libpthread manually.
* ``sox`` - The Python and Node.JS clients use SoX to resample files to 16kHz.
* ``libgomp1`` - libsox (statically linked into the clients) depends on OpenMP. Some people have had to install this manually.
* ``libstdc++`` - Standard C++ Library implementation. Some people have had to install this manually.
* ``libpthread`` - On Linux, some people have had to install libpthread manually. On Ubuntu, ``libpthread`` is part of the `` ``libpthread-stubs0-dev`` package.
Please refer to your system's documentation on how to install these dependencies.