当前位置 : 首页 > 知识分享 > 网站建设教程 > ubuntu 安装pip install mysqlclient 出错解决

ubuntu 安装pip install mysqlclient 出错解决

发布时间:2020年9月17日 15:22 作者:誉新源

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

 

使用pip install mysqlclient 安装出现错误 那是因为没有安装mysql依赖造成的首先执行:

 

  1. sudo apt-get install update #更新软件列表

  2. sudo apt-get install upgrade #更新软件

  3. sudo apt-get install libmysqlclient-dev

  4. pip install mysqlclient

这样就可以解决以上问题。 

相关文章