系统环境
os: ubuntu 16.04
mysql: Server version: 5.7.18-0ubuntu0.16.04.1 (Ubuntu)
复制
Python pip install mysql-python 时报错情况
...
raise EnvironmentError("%s not found" % (mysql_config.path,))
EnvironmentError: mysql_config not found
Complete output from command python setup.py egg_info:
sh: mysql_config: not found
复制
结论: 安装libmysqlclient-dev库。
sudo apt-get install libmysqlclient-dev
复制
有时候,有些文件不小心就 commit 到了 git 的仓库,比如 Mac 系统每个文件夹都会带有的 .DS_Store。
如果要从已经 commit 的仓库中移除这些文件,而且不需要 git 再追踪他们。可以使用 git rm 命令。
但是如果直接 git rm 会同时删除本地文件,如果需要保留在本地文件系统,加上参数 --cached即可。
git rm --cached
复制
看铭籽了解详情