Hello:
This is the python command. It works fine in my local Windows environment and I can connect to the remote Azure SQL DB that I want to connect to.
sql_conn = pyodbc.connect('DRIVER={ODBC Driver 17 for SQL Server}; ...
However, when I run my az ml submit-run CLI command in order to run an experiment in Azure Machine Learning, I get this error.:
[01000] [unixODBC][Driver Manager]Can't open lib 'ODBC Driver 17 for SQL Server' : file not found
So, it seems that AML is running its containers in Linux. Ok....I have no problem with that, but how do I configure either my <filename>.runconfig or my .yaml file to tell the Linux machine where to find the driver?
I can't really connect to a virtual machine and install this driver if I use AML, right? It's needs to be done in one of the aforementioned files, right?
Dan

