博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pymssql安装错误
阅读量:7219 次
发布时间:2019-06-29

本文共 3114 字,大约阅读时间需要 10 分钟。

Collecting pymssql  Downloading http://mirrors.aliyun.com/pypi/packages/4c/c8/5ad36d8d3c304ab4f310c89d0593ab7b6229568dd8e9cde927311b2f0c00/pymssql-2.1.3.tar.gz (897kB)    100% |████████████████████████████████| 901kB 331kB/s Installing collected packages: pymssql  Running setup.py install for pymssql ... error    Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;__file__='/private/var/folders/rs/dc06sf0j27n3xjzsr0m5r2h40000gn/T/pip-build-A6n9LJ/pymssql/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /var/folders/rs/dc06sf0j27n3xjzsr0m5r2h40000gn/T/pip-5DYkVx-record/install-record.txt --single-version-externally-managed --compile:    setup.py: platform.system() => 'Darwin'    setup.py: platform.architecture() => ('64bit', '')    setup.py: platform.libc_ver() => ('', '')    setup.py: Detected Darwin/Mac OS X.        You can install FreeTDS with Homebrew or MacPorts, or by downloading        and compiling it yourself.            Homebrew (http://brew.sh/)        --------------------------        brew install freetds            MacPorts (http://www.macports.org/)        -----------------------------------        sudo port install freetds        setup.py: Not using bundled FreeTDS    setup.py: include_dirs = ['/usr/local/include']    setup.py: library_dirs = ['/usr/local/lib']    running install    running build    running build_ext    building '_mssql' extension    creating build    creating build/temp.macosx-10.11-intel-2.7    cc -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch x86_64 -pipe -I/usr/local/include -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mssql.c -o build/temp.macosx-10.11-intel-2.7/_mssql.o -DMSDBLIB    _mssql.c:18814:15: error: use of undeclared identifier 'DBVERSION_80'        __pyx_r = DBVERSION_80;                  ^    1 error generated.    error: command 'cc' failed with exit status 1        ----------------------------------------Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/private/var/folders/rs/dc06sf0j27n3xjzsr0m5r2h40000gn/T/pip-build-A6n9LJ/pymssql/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /var/folders/rs/dc06sf0j27n3xjzsr0m5r2h40000gn/T/pip-5DYkVx-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/var/folders/rs/dc06sf0j27n3xjzsr0m5r2h40000gn/T/pip-build-A6n9LJ/pymssql/````mac上安装pymssql会提示这样的错误.```__pyx_r = DBVERSION_80;```这是因为freetds版本比较高的问题.只需要先卸载freetds,然后在安装低版本```brew unlink freetdsbrew install homebrew/versions/freetds091```然后重新安装pymssql就好感谢stackoverflow`http://stackoverflow.com/questions/37771434/mac-pip-install-pymssql-error`复制代码

转载地址:http://vvxym.baihongyu.com/

你可能感兴趣的文章
cocos2dx ScrollView 测试一 触摸事件优先级和自动调整
查看>>
django 使用mysql数据库的流程
查看>>
Android系统移植与调试之------->如何修改Android设备的默认休眠时间
查看>>
我的Android进阶之旅------>Java文件大小转换工具类 (B,KB,MB,GB,TB,PB之间的大小转换)...
查看>>
uboot 传递的参数 mtdparts
查看>>
六种排序算法C语言版(上)
查看>>
292. Nim Game(easy)
查看>>
ERROR 1786 (HY000)
查看>>
Kubernetes 学习7 Pod控制器应用进阶2
查看>>
Python字符串相加以及字符串格式化
查看>>
11.08 轮换行值
查看>>
AIX lsof 命令
查看>>
微信小程序个人项目(node.js+koa2+koa-router+middleware+mysql+node-mysql-promise+axios)
查看>>
C#温故而知新学习系列之面向对象编程—类的数据成员(三)
查看>>
列表字典推导式
查看>>
HDOJ 1228 A+B(map水题)
查看>>
intellij IDEA 导入包的方法·
查看>>
Python之路番外:PYTHON基本数据类型和小知识点
查看>>
转:matlab+spider+weka
查看>>
步步为营 .NET 设计模式学习笔记 十五、Composite(组合模式)
查看>>