karthik
karthik

Reputation: 293

Can't open lib '/usr/local/lib/libmsodbcsql.13.dylib' : file not found

I am working in python. I am using Macbook for development and OS version is Catalina. I am trying to connect MSSQL Server with pyodbc. I installed SQL Drivers and its dependencies as well. But while connecting I am getting this error.

Exception -  ('01000', "[01000] [unixODBC][Driver Manager]Can't open lib '/usr/local/lib/libmsodbcsql.13.dylib' : file not found (0) (SQLDriverConnect)")

I Checked the file path '/usr/local/lib/libmsodbcsql.13.dylib'. Actually file is available there. Can anyone help me?

Upvotes: 5

Views: 1694

Answers (1)

Mihail Kuznetsov
Mihail Kuznetsov

Reputation: 331

Solution: For 13 version need open ssl v 1.0.0 , you can try it.

brew install https://github.com/tebelorg/Tump/releases/download/v1.0.0/openssl.rb

Upvotes: 3

Related Questions