Skip to content

Commit 9001026

Browse files
authored
Merge pull request #110995 from sdgilley/patch-41
Update tutorial-1st-r-experiment.md
2 parents f89e2e6 + a1f2464 commit 9001026

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

articles/machine-learning/tutorial-1st-r-experiment.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,24 @@ The setup for your development work in this tutorial includes the following acti
9494
* Create a remote compute target to use for training
9595

9696
### Install required packages
97-
This tutorial assumes you already have the Azure ML SDK installed. Go ahead and import the **azuremlsdk** package.
97+
98+
* Install the latest version from CRAN.
99+
100+
```R
101+
# install the latest version from CRAN
102+
install.packages("azuremlsdk")
103+
azuremlsdk::install_azureml(envname = 'r-reticulate')
104+
```
105+
106+
* Or install the development version from GitHub.
107+
108+
```R
109+
# or install the development version from GitHub
110+
remotes::install_github('https://github.com/Azure/azureml-sdk-for-r')
111+
azuremlsdk::install_azureml(envname = 'r-reticulate')
112+
```
113+
114+
Now go ahead and import the **azuremlsdk** package.
98115

99116
```R
100117
library(azuremlsdk)

0 commit comments

Comments
 (0)