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
@@ -24,10 +24,10 @@ The following table shows each development environment covered in this article,
24
24
| Environment | Pros | Cons |
25
25
| --- | --- | --- |
26
26
|[Local environment](#local-computer-or-remote-vm-environment)| Full control of your development environment and dependencies. Run with any build tool, environment, or IDE of your choice. | Takes longer to get started. Necessary SDK packages must be installed, and an environment must also be installed if you don't already have one. |
27
-
|[The Data Science Virtual Machine (DSVM)](#data-science-virtual-machine)|Similar to the cloud-based compute instance (Python is pre-installed), but with additional popular data science and machine learning tools pre-installed. Easy to scale and combine with other custom tools and workflows. | A slower getting started experience compared to the cloud-based compute instance. |
28
-
|[Azure Machine Learning compute instance](#azure-machine-learning-compute-instance)|Easiest way to get started. The SDK is already installed in your workspace VM, and notebook tutorials are pre-cloned and ready to run. | Lack of control over your development environment and dependencies. Additional cost incurred for Linux VM (VM can be stopped when not in use to avoid charges). See [pricing details](https://azure.microsoft.com/pricing/details/virtual-machines/linux/). |
27
+
|[Azure Machine Learning compute instance](#azure-machine-learning-compute-instance)|Easiest way to get started. The SDK is already installed in your workspace VM, and notebook tutorials are pre-cloned and ready to run. | Lack of control over your development environment and dependencies. Cost is incurred for Linux VM (VM can be stopped when not in use to avoid charges). See [pricing details](https://azure.microsoft.com/pricing/details/virtual-machines/linux/). |
28
+
|[The Data Science Virtual Machine (DSVM)](#data-science-virtual-machine)|Similar to the cloud-based compute instance (Python is pre-installed), but with other popular data science and machine learning tools preinstalled. Easy to scale and combine with other custom tools and workflows. | A slower getting started experience compared to the cloud-based compute instance. |
29
29
30
-
This article also provides additional usage tips for the following tools:
30
+
This article also provides other usage tips for the following tools:
31
31
32
32
* Jupyter Notebooks: If you're already using Jupyter Notebooks, the SDK has some extras that you should install.
33
33
@@ -93,7 +93,7 @@ To configure a local development environment or remote VM:
93
93
1. Create a Python virtual environment (virtualenv, conda).
94
94
95
95
> [!NOTE]
96
-
> Although not required, it's recommended you use [Anaconda](https://www.anaconda.com/download/) or [Miniconda](https://www.anaconda.com/download/) to manage Python virtual environments and install packages.
96
+
> Although not required, we recommend that you use [Anaconda](https://www.anaconda.com/download/) or [Miniconda](https://www.anaconda.com/download/) to manage Python virtual environments and install packages.
97
97
98
98
> [!IMPORTANT]
99
99
> If you're on Linux or macOS and use a shell other than bash (for example, zsh) you might receive errors when you run some commands. To work around this problem, use the `bash` command to start a new bash shell and run the commands there.
@@ -106,7 +106,7 @@ Now that you have your local environment set up, you're ready to start working w
106
106
107
107
### Jupyter Notebooks
108
108
109
-
When running a local Jupyter Notebook server, it's recommended that you create an IPython kernel for your Python virtual environment. This helps ensure the expected kernel and package import behavior.
109
+
When running a local Jupyter Notebook server, we recommend that you create an IPython kernel for your Python virtual environment. This helps ensure the expected kernel and package import behavior.
0 commit comments