File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
articles/machine-learning Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,24 @@ The setup for your development work in this tutorial includes the following acti
94
94
* Create a remote compute target to use for training
95
95
96
96
### 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.
98
115
99
116
`` `R
100
117
library(azuremlsdk )
You can’t perform that action at this time.
0 commit comments