Skip to content

Commit

Permalink
Update README.md formatting (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
seantleonard authored Jun 27, 2024
1 parent 8c39055 commit 095fdc8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ To install sqlmlutils, follow the instructions below for Python and R, respectiv
Python:
To install from PyPI:
Run
```
```bash
pip install sqlmlutils
```
To install from file, download the latest release from https://github.com/microsoft/sqlmlutils/releases:
```
```bash
pip install sqlmlutils-1.1.0.zip
```

Expand All @@ -29,7 +29,7 @@ Download the latest release from https://github.com/microsoft/sqlmlutils/release
Windows:

To obtain the version of R your server is currently using, please use this query:
```
```tsql
EXEC sp_execute_external_script
@language = N'R',
@script = N'
Expand All @@ -41,18 +41,18 @@ WITH RESULT SETS ((rversion varchar(max)));
Get the version of R which the server is using and install it locally. Then, run the following commands with the same version of R.

From command prompt, run
```
```bash
R.exe -e "install.packages('odbc', type='binary')"
R.exe CMD INSTALL sqlmlutils_1.0.0.zip
```
OR
To build a new package file and install, run
```
```bash
.\buildandinstall.cmd
```

Linux
```
```bash
R.exe -e "install.packages('odbc')"
R.exe CMD INSTALL sqlmlutils_1.0.0.tar.gz
```
Expand Down

0 comments on commit 095fdc8

Please sign in to comment.