Skip to content

Commit d1b18b3

Browse files
authored
Update NBSETUP.md
1 parent e1a948f commit d1b18b3

File tree

1 file changed

+31
-14
lines changed

1 file changed

+31
-14
lines changed

NBSETUP.md

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
To run the notebooks in this repository use one of these methods:
66

7-
## Use Azure Notebooks - Jupyter based notebooks in the Azure cloud
7+
## Option 1: Use Azure Notebooks
8+
Azure Notebooks is a hosted Jupyter-based notebook service in the Azure cloud. Azure Machine Learning Python SDK is already pre-installed in the Azure Notebooks `Python 3.6` kernel.
89

910
1. [![Azure Notebooks](https://notebooks.azure.com/launch.png)](https://aka.ms/aml-clone-azure-notebooks)
1011
[Import sample notebooks ](https://aka.ms/aml-clone-azure-notebooks) into Azure Notebooks
@@ -15,20 +16,36 @@ To run the notebooks in this repository use one of these methods:
1516

1617
![set kernel to Python 3.6](images/python36.png)
1718

18-
## **Use your own notebook server**
19+
## **Option 2: Use your own notebook server**
20+
```sh
21+
# install just the base SDK
22+
pip install azureml-sdk
1923

20-
Video walkthrough:
24+
# install the base SDK and a Jupyter notebook server
25+
pip install azureml-sdk[notebooks]
2126

22-
[![Get Started video](images/yt_cover.png)](https://youtu.be/VIsXeTuW3FU)
27+
# install the data prep component
28+
pip install azureml-dataprep
2329

24-
1. Setup a Jupyter Notebook server and [install the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
25-
1. Clone [this repository](https://aka.ms/aml-notebooks)
26-
1. You may need to install other packages for specific notebook
27-
- For example, to run the Azure Machine Learning Data Prep notebooks, install the extra dataprep SDK:
28-
```bash
29-
pip install azureml-dataprep
30-
```
30+
# install model explainability component
31+
pip install azureml-sdk[explain]
3132

32-
1. Start your notebook server
33-
1. Follow the instructions in the [Configuration](configuration.ipynb) notebook to create and connect to a workspace
34-
1. Open one of the sample notebooks
33+
# install automated ml components
34+
pip install azureml-sdk[automl]
35+
36+
# install experimental features (not ready for production use)
37+
pip install azureml-sdk[contrib]
38+
39+
# clone the sample repoistory
40+
git clone https://github.com/Azure/MachineLearningNotebooks.git
41+
```
42+
43+
### Full instructions
44+
[install the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
45+
46+
Please make sure you start with the [Configuration](configuration.ipynb) notebook to create and connect to a workspace.
47+
48+
49+
### Video walkthrough:
50+
51+
[![Get Started video](images/yt_cover.png)](https://youtu.be/VIsXeTuW3FU)

0 commit comments

Comments
 (0)