Skip to content

Commit 190f4e2

Browse files
authored
Update install-additional-r-packages-on-sql-server.md
- https://github.com/Microsoft/sqlmlutils/tree/master/R/dist goes to an old sqlmlutils, not the releases tab. So, customers may download an old version. - Updating R.exe -e "install.packages('odbc')" to R.exe -e "install.packages('odbc', type='binary')" (to be consistent with the github readme https://github.com/microsoft/sqlmlutils and customer don't get dependency related errors)
1 parent 01f1f6d commit 190f4e2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/machine-learning/package-management/install-additional-r-packages-on-sql-server.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ The **sqlmlutils** package depends on the **odbc** package, and **odbc** depends
6464

6565
If the client computer has Internet access, you can download and install **sqlmlutils** and its dependent packages online.
6666

67-
1. Download the latest **sqlmlutils** file (`.zip` for Windows, `.tar.gz` for Linux) from https://github.com/Microsoft/sqlmlutils/tree/master/R/dist to the client computer. Don't expand the file.
67+
1. Download the latest **sqlmlutils** file (`.zip` for Windows, `.tar.gz` for Linux) from https://github.com/microsoft/sqlmlutils/releases to the client computer. Don't expand the file.
6868

6969
1. Open a **Command Prompt** and run the following commands to install the packages **odbc** and **sqlmlutils**. Substitute the path to the **sqlmlutils** file you downloaded. The **odbc** package is found online and installed.
7070

7171
::: moniker range=">=sql-server-ver15||=azuresqldb-mi-current"
7272
```console
73-
R.exe -e "install.packages('odbc')"
73+
R.exe -e "install.packages('odbc', type='binary')"
7474
R.exe CMD INSTALL sqlmlutils_1.0.0.zip
7575
```
7676
::: moniker-end
@@ -128,7 +128,7 @@ On a computer with Internet access:
128128
, @script = N'print(R.version)'
129129
```
130130

131-
1. Download the latest **sqlmlutils** file (`.zip` for Windows, `.tar.gz` for Linux) from [https://github.com/Microsoft/sqlmlutils/tree/master/R/dist](https://github.com/Microsoft/sqlmlutils/tree/master/R/dist). Don't expand the file.
131+
1. Download the latest **sqlmlutils** file (`.zip` for Windows, `.tar.gz` for Linux) from [https://github.com/microsoft/sqlmlutils/releases](https://github.com/microsoft/sqlmlutils/releases). Don't expand the file.
132132

133133
1. Copy the entire **odbc** repository folder and the **sqlmlutils** file to the client computer.
134134

@@ -291,4 +291,4 @@ help("sql_install.packages")
291291
- For information about installed R packages, see [Get R package information](r-package-information.md)
292292
- For help in working with R packages, see [Tips for using R packages](tips-for-using-r-packages.md)
293293
- For information about installing Python packages, see [Install Python packages with pip](install-additional-python-packages-on-sql-server.md)
294-
- For more information about SQL Server Machine Learning Services, see [What is SQL Server Machine Learning Services (Python and R)?](../sql-server-machine-learning-services.md)
294+
- For more information about SQL Server Machine Learning Services, see [What is SQL Server Machine Learning Services (Python and R)?](../sql-server-machine-learning-services.md)

0 commit comments

Comments
 (0)