[TOC]
## OSError: mysql_config not found
```
yum install mysql-devel gcc gcc-devel python-devel
```
## idea无法打开md文件 Missing native libraries: libXss.so.1 解决
```
yum install libXScrnSaver*
yum install epel-release
yum install libappindicator-gtk3
```
## idea卡死强制关闭
```
# 查询进程
ps -ef | grep IDEA
# 强执杀死
kill -9 进程
```
## command 'gcc' failed with exit status 1
```
yum install python3-devel
yum install python-devel
```