Mitchell Bregman
12/09/2020, 4:59 PMpyodbc to be installed in order to connect to a SQLServer instance… i have pulled Prefects master docker image and ran interactively to test out `pip install pyodbc`… running into gcc issues, as expected, but i am now trying to apt-get or apt install an odbc driver unixodbc-dev and getting weird “not found” type results… i have run into similar issues, but was relying on a conda environment which allowed me to conda install pyodbc but how can i replicate this here with pip?josh
12/09/2020, 5:14 PMapt-get update
apt-get install -y tdsodbc unixodbc-dev
apt install unixodbc-bin -y
apt-get install --reinstall build-essential -y
pip install pyodbc
Not sure if that solves the issue for youMitchell Bregman
12/09/2020, 6:06 PM