zoukankan      html  css  js  c++  java
  • django 错误之 OSError: mysql_config not found

    pip 导入包时出现如下错误

     1  Complete output from command python setup.py egg_info:
     2     /bin/sh: 1: mysql_config: not found
     3     Traceback (most recent call last):
     4       File "<string>", line 1, in <module>
     5       File "/tmp/pip-install-6p9kqc0e/mysqlclient/setup.py", line 17, in <module>
     6         metadata, options = get_config()
     7       File "/tmp/pip-install-6p9kqc0e/mysqlclient/setup_posix.py", line 44, in get_config
     8         libs = mysql_config("libs_r")
     9       File "/tmp/pip-install-6p9kqc0e/mysqlclient/setup_posix.py", line 26, in mysql_config
    10         raise EnvironmentError("%s not found" % (mysql_config.path,))
    11     OSError: mysql_config not found
    12     
    13     ----------------------------------------
    14 Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-6p9kqc0e/mysqlclient/

    出现上面错误主要还是因为未安装python依赖,及mysqlclient:

    问题解决:

    1 sudo apt-get install python3-dev libmysqlclient-dev
    2 pip install mysqlclient
  • 相关阅读:
    POJ 1315 Don't Get Rooked
    POJ 2051 Argus
    POJ 1942 Paths on a Grid
    POJ 2151 Check the difficulty of problems
    POJ 3349 Snowflake Snow Snowflakes
    POJ 1753 Flip Game
    POJ 2392 Space Elevator
    POJ 2385 Apple Catching
    POJ 2356 Find a multiple
    POJ 2355 Railway tickets
  • 原文地址:https://www.cnblogs.com/0x0101010/p/8901686.html
Copyright © 2011-2022 走看看