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: NBSETUP.md
+31-14Lines changed: 31 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,8 @@
4
4
5
5
To run the notebooks in this repository use one of these methods:
6
6
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.
[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:
15
16
16
17

17
18
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
19
23
20
-
Video walkthrough:
24
+
# install the base SDK and a Jupyter notebook server
25
+
pip install azureml-sdk[notebooks]
21
26
22
-
[](https://youtu.be/VIsXeTuW3FU)
27
+
# install the data prep component
28
+
pip install azureml-dataprep
23
29
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)
0 commit comments