获取"未声明的标识符DBVERSION_80"使用pip安装pymssql时

时间:2017-03-03 09:41:40

标签: python mysql macos pymssql

当我在我的mac上安装 pymssql 时,用pip install pymssql'它以undeclared identifier DBVERSION_80失败。

出了什么问题?enter image description here

1 个答案:

答案 0 :(得分:2)

你试过这个:

brew install freetds

来源:http://pymssql.org/en/latest/intro.html

如果您收到此错误:

__pyx_r = DBVERSION_80;
              ^
1 error generated.

然后你可以解决这个问题:

brew unlink freetds
brew install homebrew/versions/freetds091

然后安装:

pip install pymssql

来源:https://github.com/pymssql/pymssql/issues/432