You can use the Get-OdbcDriver cmdlet to list all installed drivers and their attributes. powershell Get-OdbcDriver | Select-Object Name, Platform, Attribute Use code with caution.
Open your terminal.
import pyodbc print(pyodbc.drivers()) for driver in pyodbc.drivers(): if "SQL Server" in driver: print(driver)
MacOS often uses unixODBC or iODBC frameworks.