码迷,mamicode.com
首页 > 系统相关 > 详细

Mac下开发环境的配置

时间:2017-12-11 14:24:24      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:执行   config   程序   https   安装   ssl https   com   ssl   扫描   

新安装的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

 

Mac下开发环境的配置

标签:执行   config   程序   https   安装   ssl https   com   ssl   扫描   

原文地址:http://www.cnblogs.com/Kevin-1967/p/8022181.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!