user7664492
user7664492

Reputation:

How to install pyodbc driver on Azure machine learning services using python?

I want to create a sklearn model on azure machine learning service. But when I run the script then I got error in pyodbc. How to install pyodbc on azure machine learning service?

Upvotes: 0

Views: 1887

Answers (1)

Hypnobrew
Hypnobrew

Reputation: 1140

Maybe you already solved your issue, but I ran into the same problem with the docker image from Microsoft in Azure Machine Learning Services. (mcr.microsoft.com/azureml/base)

So I built my own docker image based on the base image, and installed the missing MSSQL driver for PyOdbc and some additional locales required by the driver.

hypnobrew/azure-ml:0.1

Upvotes: 2

Related Questions