pyodbc on google colab
问题 I am trying to connect to my SQL server on google colab by using pyodbc. However, it tells me that I cannot find the driver. Code to install packages (I replaced IP, port and password with x) ``` !sudo apt-get install unixodbc-dev !pip install pyodbc !pip install chart_studio ``` ``` import pyodbc conn = pyodbc.connect(DRIVER = '{ODBC Driver 17 for SQL Server}', SERVER = 'xxx.xxx.x.xx, xxxx', DATABASE = 'Database', UID = 'sa', PWD = 'xxxxxx') cursor = conn.cursor() ``` I get this error: ```--