zoukankan      html  css  js  c++  java
  • /usr/bin/ld: cannot find lmysqlclient_r

    /usr/bin/ld: cannot find -lmysqlclient_r

    2008年11月25日 | 标签: mysqlclient_rpython数据库

    今天在家里电脑准备安装django环境,当然肯定用mysql数据库了。PYTHON要操作MYSQL,必须得安装扩展名–mysql-python,(mysql-python-1.2.2).在安装期间提示标题所写(/usr/bin/ld: cannot find -lmysqlclient_r),

    执行以下命令:

    echo “/usr/local/mysql/lib/mysql” >> /etc/ld.so.conf(我的环境是centos 5)

    ldconfig,执行以后还是提示以上错误。 

    ———————–

    后来看来一下README,原文在下面

    ——————-

    threadsafe
            thread-safe client library (libmysqlclient_r) if True (default);
            otherwise use non-thread-safe (libmysqlclient). You should
            always use the thread-safe library if you have the option;
            otherwise you *may* have problems.

    ———————————

    得知得修改site.cfg,将thread-safe设为false,一切OK!

    python setup.py install

  • 相关阅读:
    linux date使用
    SHELL输出带颜色字体
    vimrc配置
    你所不知道的C++
    temp
    说什么好呢3
    Extjs3 Combo实现百度搜索查询
    Extjs3笔记 fbar
    Extjs combo赋值与刷新的先后顺序
    sql中nvarchar(max)长度测试
  • 原文地址:https://www.cnblogs.com/lexus/p/2507109.html
Copyright © 2011-2022 走看看