Skip to content

Commit aa44e93

Browse files
authored
Remove subsection for Databricks Runtime in Getting Started (#964)
![Screen Shot 2019-10-29 at 10 36 12 AM](https://user-images.githubusercontent.com/6477701/67730295-f4e05a80-fa37-11e9-8da0-2c974f6a5f07.png)
1 parent 8b0f760 commit aa44e93

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,23 @@ Try the Koalas 10 minutes tutorial on a live Jupyter notebook [here](https://myb
3535

3636
## Getting Started
3737

38-
The recommended way of installing Koalas is Conda. You can use not only Conda but also multiple ways to install Koalas. See [Installation](https://koalas.readthedocs.io/en/latest/getting_started/install.html) for full instructions to install Koalas.
38+
The recommended way of installing Koalas is Conda as below.
3939

4040
```bash
4141
conda install koalas -c conda-forge
4242
```
4343

44+
You can use not only Conda but also multiple ways to install Koalas. See [Installation](https://koalas.readthedocs.io/en/latest/getting_started/install.html) for full instructions to install Koalas.
45+
46+
If you are a Databricks Runtime user, you can install Koalas using the Libraries tab on the cluster UI, or using `dbutils` in a notebook as below, for the regular Databricks Runtime.
47+
48+
```python
49+
dbutils.library.installPyPI("koalas")
50+
dbutils.library.restartPython()
51+
```
52+
53+
Note that Koalas requires Databricks Runtime 5.x or above. In the future, we will package Koalas out-of-the-box in both the regular Databricks Runtime and Databricks Runtime for Machine Learning.
54+
4455
Now you can turn a pandas DataFrame into a Koalas DataFrame that is API-compliant with the former:
4556

4657
```python
@@ -61,17 +72,6 @@ df['x2'] = df.x * df.x
6172

6273
For more details, see [Getting Started](https://koalas.readthedocs.io/en/latest/getting_started/index.html) and [Dependencies](https://koalas.readthedocs.io/en/latest/getting_started/install.html#dependencies) in the official documentation.
6374

64-
### Databricks Runtime
65-
66-
Koalas requires Databricks Runtime 5.x or above. For the regular Databricks Runtime, you can install Koalas using the Libraries tab on the cluster UI, or using dbutils in a notebook:
67-
68-
```python
69-
dbutils.library.installPyPI("koalas")
70-
dbutils.library.restartPython()
71-
```
72-
73-
In the future, we will package Koalas out-of-the-box in both the regular Databricks Runtime and Databricks Runtime for Machine Learning.
74-
7575

7676
## Contributing Guide
7777

0 commit comments

Comments
 (0)