hey there — I am designing a flow that requires `p...
# prefect-community
m
hey there — I am designing a flow that requires
pyodbc
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
?
j
Hi @Mitchell Bregman I was able to install it in the master docker image by running:
Copy code
apt-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 you
m
sure did!!! thanks so much