mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Add usage in doc
This commit is contained in:
parent
d979c6af9a
commit
4842b0ae24
2 changed files with 26 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ Congratulations, you have successfully installed Apache Zeppelin! Here are few s
|
|||
* Check [JDBC Interpreter](../interpreter/jdbc.html) to know more about configure and uses multiple JDBC data sources.
|
||||
|
||||
#### Zeppelin with Python ...
|
||||
* Check [Python interpreter](../interpreter/python.html) to know more about Matplotlib, Pandas integration.
|
||||
* Check [Python interpreter](../interpreter/python.html) to know more about Matplotlib, Pandas, Conda integration.
|
||||
|
||||
|
||||
#### Multi-user environment ...
|
||||
|
|
|
|||
|
|
@ -59,6 +59,31 @@ To access the help, type **help()**
|
|||
## Python modules
|
||||
The interpreter can use all modules already installed (with pip, easy_install...)
|
||||
|
||||
## Conda
|
||||
[Conda](http://conda.pydata.org/) is an package management system and environment management system for python.
|
||||
`%python.conda` interpreter lets you change between environments.
|
||||
|
||||
#### Usage
|
||||
|
||||
List your environments
|
||||
|
||||
```
|
||||
%python.conda
|
||||
```
|
||||
|
||||
Activate an environment
|
||||
|
||||
```
|
||||
%python.conda activate [ENVIRONMENT_NAME]
|
||||
```
|
||||
|
||||
Deactivate
|
||||
|
||||
```
|
||||
%python.conda deactivate
|
||||
```
|
||||
|
||||
|
||||
## Using Zeppelin Dynamic Forms
|
||||
You can leverage [Zeppelin Dynamic Form]({{BASE_PATH}}/manual/dynamicform.html) inside your Python code.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue