CentOS 常见异常及解决办法

1.pip3安装mysqlclient报错python setup.py egg_info Check the logs for full command output.

在CentOS上部署Django项目时,经常需要安装MySQL数据库引擎,如mysqlclient,在执行pip3 install mysqlclient命令时,可能会报错如下:

ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-zmnd8v74/mysqlclient/setup.py'"'"'; __file__='"'"'/tmp/pip-install-zmnd8v74/mysqlclient/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-jpy0d_w0
         cwd: /tmp/pip-install-zmnd8v74/mysqlclient/
    Complete output (12 lines):
    /bin/sh: mysql_config: command not found
    /bin/sh: mariadb_config: command not found
    /bin/sh: mysql_config: command not found
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-zmnd8v74/mysqlclient/setup.py", line 15, in <module>
        metadata, options = get_config()
      File "/tmp/pip-install-zmnd8v74/mysqlclient/setup_posix.py", line 65, in get_config
        libs = mysql_config("libs")
      File "/tmp/pip-install-zmnd8v74/mysqlclient/setup_posix.py", line 31, in mysql_config
        raise OSError("{} not found".format(_mysql_config_path))
    OSError: mysql_config not found
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

这是因为缺少mysql-devel包,需要现进行安装,同时为了解决包版本冲突和依赖冲突,需要先下载并安装mysql的yum源,命令如下:

# 下载对应版本mysql的yum源的rpm包
wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm

# 安装rpm包
rpm -ivh mysql57-community-release-el7-8.noarch.rpm

然后再执行yum install mysql-devel命令安装mysql-devel包,打印如下:

Loaded plugins: fastestmirror
mysql-connectors-community                                                                                                                                                                 | 2.6 kB  00:00:00     
mysql-tools-community                                                                                                                                                                      | 2.6 kB  00:00:00     
mysql57-community                                                                                                                                                                          | 2.6 kB  00:00:00     
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package mysql-community-devel.x86_64 0:5.7.32-1.el7 will be installed
--> Finished Dependency Resolution

就将mysql-devel包安装成功了。

最后再执行pip3 install mysqlclient命令就可以成功安装mysqlclient引擎。

2.vim编辑文件时每一行末尾都有^M

用Linux打开Windows或Mac本地编辑过的文本文件时,末尾都会带^M,如下:
Vim ^M
这是CTRL+M,是换行符\r,最简单的方式是在命令模式下进行替换即可,如下:
replace
命令为:%s#\r##%s/\r//
更多说明和方法可参考https://blog.csdn.net/weixin_33826609/article/details/92711016

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI码东道主

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值