You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/install/install.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,8 @@ Although it can be unstable somehow since it is on development status, you can e
62
62
If you want to install Apache Zeppelin with a stable binary package, please visit [Apache Zeppelin download Page](http://zeppelin.apache.org/download.html).
63
63
After unpacking, jump to [Starting Apache Zeppelin with Command Line](#starting-apache-zeppelin-with-command-line) section.
64
64
65
+
If you have downloaded `netinst` binary, [install additional interpreters](http://localhost:4000/install/install.html#install-interpreters) or simply run `./bin/install-interpreter.sh --all` before you jump to [Starting Apache Zeppelin with Command Line](#starting-apache-zeppelin-with-command-line) section.
66
+
65
67
### Building from Source
66
68
If you want to build from the source, the software below needs to be installed on your system.
67
69
@@ -389,3 +391,56 @@ You can configure Apache Zeppelin with both **environment variables** in `conf/z
389
391
<td>Size in characters of the maximum text message to be received by websocket.</td>
390
392
</tr>
391
393
</table>
394
+
395
+
## Install interpreters
396
+
397
+
You can install additional [interpreters](../manual/interpreters.html) using `bin/install-interpreter.sh` command.
398
+
399
+
### Community managed interpreters
400
+
401
+
Informations of community managed interpreters are listed in `conf/interpreter-list` file. `bin/install-interpreter.sh` command will read this file to install interpreters.
You can get full list of community managed interpreters by running
416
+
417
+
```
418
+
./bin/install-interpreter.sh --list
419
+
```
420
+
421
+
Once you have installed interpreter, restart Zeppelin. And then you'll need [create interpreter setting](../manual/interpreters.html#what-is-zeppelin-interpreter) and [binding it with your notebook](../manual/interpreters.html#what-is-zeppelin-interpreter-setting).
422
+
423
+
424
+
### 3rd party interpreters
425
+
426
+
`./bin/install-interpreter.sh` command can install 3rd party interpreters available in maven repository.
The command will download maven artifact `groupId1:artifact1:version1` and all of it's transitive dependencies into `interpreter/interpreter1` directory.
435
+
436
+
Once you have installed interpreters, you'll need to add interpreter class name into `zeppelin.interpreters` property in [configuration](install.html#zeppelin-configuration).
437
+
And then restart Zeppelin, [create interpreter setting](../manual/interpreters.html#what-is-zeppelin-interpreter) and [binding it with your notebook](../manual/interpreters.html#what-is-zeppelin-interpreter-setting).
438
+
439
+
440
+
##### Install multiple 3rd party interpreters at once
441
+
442
+
`--name` and `--repository` argument receives comma separated list
0 commit comments