股票

E: Package ‘libmysqld-dev’ has no installation candidate

安装 mysql-Python 的时候提示错误:

  1. maydolly@localhost:~/MySQL-python-1.2.5$ sudo pip install MySQL-Python
  2. Collecting MySQL-Python
  3.   Using cached MySQL-python-1.2.5.zip
  4.     Complete output from command python setup.py egg_info:
  5.     sh: 1: mysql_config: not found
  6.     Traceback (most recent call last):
  7.       File “<string>”, line 1, in <module>
  8.       File “/tmp/pip-build-yZtb7x/MySQL-Python/setup.py”, line 17, in <module>
  9.         metadata, options = get_config()
  10.       File “setup_posix.py”, line 43, in get_config
  11.         libs = mysql_config(“libs_r”)
  12.       File “setup_posix.py”, line 25, in mysql_config
  13.         raise EnvironmentError(“%s not found” % (mysql_config.path,))
  14.     EnvironmentError: mysql_config not found
  15.     —————————————-
  16. Command “python setup.py egg_info” failed with error code 1 in /tmp/pip-build-yZtb7x/MySQL-Python/

缺乏文件 mysql_config ,网上查了,说是需要安装插件:libmysqld-dev

但是,又跳出错误:

  1. maydolly@localhost:/usr/local$ sudo apt-get install libmysqld-dev
  2. Reading package lists… Done
  3. Building dependency tree
  4. Reading state information… Done
  5. Package libmysqld-dev is not available, but is referred to by another package.
  6. This may mean that the package is missing, has been obsoleted, or
  7. is only available from another source
  8. However the following packages replace it:
  9.   libmariadbd18 libmariadbd-dev
  10. E: Package ‘libmysqld-dev’ has no installation candidate

再去找问题:E: Package ‘libmysqld-dev’ has no installation candidate

然后就卡住了,死活找不到适用的解决办法,更新库,更新源,全是失败。

再仔细看了一下错误描述,发现有这么一句话:

However the following packages replace it:
libmariadbd18 libmariadbd-dev

原来的包已经过时,需要用新包替换了!!!重新执行:

 sudo apt-get install libmariadbd18 libmariadbd-dev

终于成功了!

在执行mysql-Python安装指令:Successfully installed mysql-Python-1.2.5

 

打赏
原文链接:,转发请注明来源!

发表评论

  • 1 Responses to “E: Package ‘libmysqld-dev’ has no installation candidate”
    • 匿名

      源是啥

      回复