Unable to install pyodbc on Linux

前端 未结 18 2087
野趣味
野趣味 2020-11-28 05:23

I am running Linux (2.6.18-164.15.1.el5.centos.plus) and trying to install pyodbc. I am doing pip install pyodbc and get a very long list of errors, which end in

18条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 05:43

    For archlinux/manjaro:

    sudo pacman -S unixodbc
    

    then:

    sudo pip install pyodbc
    

    or:

    pip install pyodbc
    

    You can upgrade your pip wheel setuptools before installing pyodbc (it won't affect the pyodbc installation) also with:

    sudo python -m pip install --upgrade pip wheel setuptools
    

    or

    python -m pip install --upgrade pip wheel setuptools
    

提交回复
热议问题