Revert "Update docs to point to npm packages"

This commit is contained in:
Reuben Morais 2017-11-22 13:35:32 -02:00 committed by GitHub
parent f74de71c2d
commit 5ba46cc2da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 11 deletions

View File

@ -120,16 +120,11 @@ See the help output with `./deepspeech -h` and the [native client README](native
### Using the Node.JS package
You can download the Node.JS bindings using `npm`:
You can download the Node.JS bindings using `util/taskcluster.py` and install them with `npm`:
```bash
npm install deepspeech
```
Alternatively, if you're using Linux and have a supported NVIDIA GPU (See the release notes to find which GPU's are supported.), you can install the GPU specific package as follows:
```bash
npm install deepspeech-gpu
python util/taskcluster.py --target . --artifact deepspeech-0.0.2.tgz
npm install deepspeech-0.0.2.tgz
```
See [client.js](native_client/client.js) for an example of how to use the bindings.

View File

@ -28,9 +28,7 @@ Check the [main README](../README.md) for more details about setup and virtual e
### Node.JS bindings
For Node.JS bindings, use `npm install deepspeech` to install it. Please note that as of now, we only support Node.JS versions 4, 5 and 6. Once [SWIG has support](https://github.com/swig/swig/pull/968) we can build for newer versions.
Check the [main README](../README.md) for more details.
For Node.JS bindings, use `python util/taskcluster.py --target . --artifact deepspeech-0.0.2.tgz` to download the package and `npm install deepspeech-0.0.2.tgz` to install it. Please note that as of now, we only support Node.JS versions 4, 4 and 6. Once [SWIG has support](https://github.com/swig/swig/pull/968) we can build for newer versions.
## Build Requirements