You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,21 @@ Once you have downloaded the source code and all the dependencies installed, run
57
57
58
58
python ODMTools.py
59
59
60
+
if installing pyodbc onto a Mac machine please follow these instructions:
61
+
62
+
pyodbc Configuration
63
+
Download the source code [here](https://code.google.com/p/pyodbc/downloads/detail?name=pyodbc-3.0.7.zip&can=2&q=).
64
+
Unzip the directory where ever you want.
65
+
Edit setup.py within the pyodbc directory.
66
+
Look for the line that says “OS/X now ships with iODBC.” Right underneath that, remove the letter i from the statement:
67
+
settings[‘libraries’].append(‘iodbc’)
68
+
69
+
so that it reads:
70
+
settings[‘libraries’].append(‘odbc’)
71
+

72
+
Now that the setup.py file is configured correctly, pyodbc is ready to be installed. From your virtual environment, do a pip install of pyodbc and use the modified package.
0 commit comments