习惯了linux上一个数据库工具---mycli,一直觉得轻巧好用,使用ubuntu时可以直接安装,
sudo apt-get install mycli
换了opensuse后发现源上面好像没有,直接就使用pip工具安装
sudo pip install mycli
发现安装报错,好像还是报错。
大概查看了报错信息,发现有几个
running build_configure
checking for gcc... no
checking for cc... no
checking for cl.exe... no
估计是没有安装gcc工具吧
sudo zypper in gcc
再次尝试安装时发现还是有报错
fatal error: Python.h: 没有那个文件或目录
#include "Python.h" ^ compilation terminated. warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath. error: command 'gcc' failed with exit status 1
继续安装python3-devel
sudo zypper in python3-devel
然后就安装成功了
至于mycli的使用可以参考下面的链接