新安装的mac系统往往要配置各种环境,总是记不住,暂时保存在这,以备后需-------
Mac下的包管理工具使用的是brew,首先安装它
官方站:https://brew.sh/
安装命令:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
【shell相关】
mac自带的终端工具看着不太爽,一直用的fish这个shell,界面好看一些,安装方法如下:
#brew install fish
#fish_config 执行命令后,自动打开浏览器,配置你想要的样式即可
【Python相关】
1.mysqldb包 安装
#brew install mysql (解决mysql_config命令找不到的问题)
#pip install MySQL-Python
参考链接:https://stackoverflow.com/questions/25459386/mac-os-x-environmenterror-mysql-config-not-found
2.自动生成生成requirements.txt
python项目需要import各种包,但是迁移到新环境的时候总是忘记安装各种包,所以编写一个requirements.txt是个很好的方法,到新的环境下pip install -r requirements.txt即可,
在这推荐一款工具pipreqs,
安装:#pip install pipreqs
使用:切换到项目目录下 执行
# pipreqs ./
程序会自动扫描项目目录 生成requirements.txt