Skip to content

Commit d151799

Browse files
authored
Update BUILDGUIDE.md
1 parent be8e17f commit d151799

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

BUILDGUIDE.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,8 @@ This guide will help you set up your environment, build the native bindings, and
5555
brew install cmake
5656
```
5757
3. **Install Microsoft ODBC Driver for SQL Server:**
58-
```bash
59-
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
60-
brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release
61-
brew update
62-
HOMEBREW_ACCEPT_EULA=Y brew install msodbcsql18 mssql-tools18
63-
```
64-
4. **Install Python requirements:**
58+
- Follow [official instructions](https://learn.microsoft.com/en-us/sql/connect/odbc/linux-mac/install-microsoft-odbc-driver-sql-server-macos).
59+
5. **Install Python requirements:**
6560
```bash
6661
# Will install pybind11, setuptools etc.
6762
pip install -r requirements.txt
@@ -72,11 +67,11 @@ This guide will help you set up your environment, build the native bindings, and
7267
1. **Install Python and development tools:**
7368
```bash
7469
sudo apt-get update
75-
sudo apt-get install python3.10 python3.10-dev python3-pip build-essential cmake
70+
sudo apt-get install python3 python3-dev python3-pip build-essential cmake
7671
```
77-
Ensure `python` and `pip` refer to Python 3.10.
72+
Ensure `python` and `pip` refer to Python 3.10+.
7873
2. **Install Microsoft ODBC Driver for SQL Server:**
79-
Follow [official instructions](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server).
74+
- Follow [official instructions](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server).
8075
3. **Install Python packages:**
8176
```bash
8277
# Will install pybind11, setuptools etc.

0 commit comments

Comments
 (0)