Skip to content

Commit c1573ff

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

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

NBSETUP.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Notebook setup
1+
# Setting up environment
22

33
---
44

5-
To run the notebooks in this repository use one of these methods:
5+
To run the notebooks in this repository use one of the two options.
66

77
## Option 1: Use Azure Notebooks
88
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.
@@ -17,10 +17,17 @@ Azure Notebooks is a hosted Jupyter-based notebook service in the Azure cloud. A
1717
![set kernel to Python 3.6](images/python36.png)
1818

1919
## **Option 2: Use your own notebook server**
20+
21+
### Quick installation
22+
We recommend you create a Python virtual environment ([Miniconda](https://conda.io/miniconda.html) preferred but [virtualenv](https://virtualenv.pypa.io/en/latest/) works too) and install the SDK in it.
2023
```sh
2124
# install just the base SDK
2225
pip install azureml-sdk
2326

27+
# clone the sample repoistory
28+
git clone https://github.com/Azure/MachineLearningNotebooks.git
29+
30+
# below steps are optional
2431
# install the base SDK and a Jupyter notebook server
2532
pip install azureml-sdk[notebooks]
2633

@@ -35,13 +42,10 @@ pip install azureml-sdk[automl]
3542

3643
# install experimental features (not ready for production use)
3744
pip install azureml-sdk[contrib]
38-
39-
# clone the sample repoistory
40-
git clone https://github.com/Azure/MachineLearningNotebooks.git
4145
```
4246

4347
### Full instructions
44-
[install the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
48+
[Install the Azure Machine Learning SDK](https://docs.microsoft.com/en-us/azure/machine-learning/service/quickstart-create-workspace-with-python)
4549

4650
Please make sure you start with the [Configuration](configuration.ipynb) notebook to create and connect to a workspace.
4751

0 commit comments

Comments
 (0)