zoukankan      html  css  js  c++  java
  • ubuntu安装mysql-python


    1.首先你要确定ubuntu更新源能用。以下的源适合13.X和14.X,低版本号的ubuntu没试过。毕竟劳资不是測试人员。

      为了安全起见 cp /etc/apt/source.list /etc/apt/source.list.bak 

     将以下的内容写到/etc/apt/source.list

    deb http://mirrors.163.com/ubuntu/ trusty main restricted universe multiverse
    deb http://mirrors.163.com/ubuntu/ trusty-security main restricted universe multiverse
    deb http://mirrors.163.com/ubuntu/ trusty-updates main restricted universe multiverse
    deb http://mirrors.163.com/ubuntu/ trusty-proposed main restricted universe multiverse
    deb http://mirrors.163.com/ubuntu/ trusty-backports main restricted universe multiverse
    deb-src http://mirrors.163.com/ubuntu/ trusty main restricted universe multiverse
    deb-src http://mirrors.163.com/ubuntu/ trusty-security main restricted universe multiverse
    deb-src http://mirrors.163.com/ubuntu/ trusty-updates main restricted universe multiverse
    deb-src http://mirrors.163.com/ubuntu/ trusty-proposed main restricted universe multiverse
    deb-src http://mirrors.163.com/ubuntu/ trusty-backports main restricted universe multiverse

    2. sudo apt-get update

    3.sudo apt-get install mysql-python

       发现报错了:

    sh: mysql_config: not found
    Traceback (most recent call last):
      File "setup.py", line 15, in <module>
        metadata, options = get_config()
      File "/home/zhxia/apps/source/MySQL-python-1.2.3/setup_posix.py", line 43, in get_config
        libs = mysql_config("libs_r")
      File "/home/zhxia/apps/source/MySQL-python-1.2.3/setup_posix.py", line 24, in mysql_config
        raise EnvironmentError("%s not found" % (mysql_config.path,))
    EnvironmentError: mysql_config not found


    4.详细原因是安装程序在/usr/bin/下找不到mysql_config文件。

    在网上查的解决方法,通常是说你没有libmysqld-dev 或libmysqlclient-dev 。但是查了一下发现都存在。


    5.首先一个重要的python-dev一般都没有安装,所以须要sudo apt-get install python-dev

    完事继续安装mysql-python,发现还是不行。

    6.重装libmysqlclient-dev,

       奇迹最终出现了:


  • 相关阅读:
    分层图最短路(DP思想) BZOJ2662 [BeiJing wc2012]冻结
    动态规划 BZOJ1925 地精部落
    线性DP SPOJ Mobile Service
    线性DP codevs2185 最长公共上升子序列
    数位DP POJ3208 Apocalypse Someday
    线性DP POJ3666 Making the Grade
    杨氏矩阵 线性DP? POJ2279 Mr.Young's Picture Permutations
    tarjan强连通分量 洛谷P1262 间谍网络
    树链剖分 BZOJ3589 动态树
    二分图 BZOJ4554 [Tjoi2016&Heoi2016]游戏
  • 原文地址:https://www.cnblogs.com/lxjshuju/p/6785103.html
Copyright © 2011-2022 走看看