Error installing mysqlclient for python on Ubuntu 18.04

前端 未结 6 563
挽巷
挽巷 2020-12-01 14:57

I installed Python 2.7.15rci and Python 3.6.7 on Ubuntu. When i did \'pip list\' on virtualenv it returns me:

Django (2.1.5)
pip (9.0.1)
pkg-resources (0.0.0         


        
相关标签:
6条回答
  • 2020-12-01 15:22

    gcc is part of the build-essential package, which you should install before anything else:

    sudo apt-get install build-essential
    

    UPDATE: Following @bosnjak's suggestion, you also might need to install the openssl developer tools:

    sudo apt-get install libssl-dev
    
    0 讨论(0)
  • 2020-12-01 15:25

    I specified the particular version of python it's 3.7 And that helped me

    I have installed these ones:

    sudo apt-get install python3.7-dev libmysqlclient-dev
    

    And then installed mysqlclient by:

    pip install mysqlclient
    
    0 讨论(0)
  • 2020-12-01 15:28

    This issue was persistent in Ubuntu and python 3+. In my case, I was using Ubuntu 18.04 and found this solution to be useful for python version 3.7.5

    Step 1. Install libpython3.7-dev via sudo apt

    > sudo apt-get install libpython3.7-dev
    

    Step 2: Install mysqlclient

    > python3 -m pip install mysqlclient==1.4.6
    
    0 讨论(0)
  • 2020-12-01 15:30

    I'm using the python3.8. Similarly to david's answer, use the following command then it works.

    $ sudo apt-get install python3.8-dev

    0 讨论(0)
  • 2020-12-01 15:44

    I turned out, that the solution is slightly different for almost every Python version. For those using different versions, such as Python 2.x, 3.5 or 3.7 I found this:

    Part I

    For Python 2.x use:

      $ sudo apt-get install python-dev
    

    For Python 2.7 use:

      $ sudo apt-get install libffi-dev
    

    For Python 3.x use:

      $ sudo apt-get install python3-dev
    

    For Python 3.4 use:

      $ sudo apt-get install python3.4-dev
    

    For Python 3.7 use:

      $ sudo apt-get install python3.7-dev
    

    Part II

    If this still doesn't help, others have pointed out to install

      $ sudo apt-get install build-essential
    

    and finally

      $ sudo apt-get install libssl-dev
    

    But the last two didn't help myself - but hoping this might help you!

    0 讨论(0)
  • 2020-12-01 15:47

    I wanted to install the 'Modoboa' mail-server package (https://github.com/modoboa/modoboa) on my Ubuntu 18.04 with Apache as my webserver, instead of nginx. I needed mysqlclient for Python 2.7. The following packages worked for me:

    sudo apt-get install libssl-dev gcc python2.7-dev libmysqlclient-dev
    
    0 讨论(0)
提交回复
热议问题