那些重装系统后,所需要安装的程序的配置资料。

现在重装系统很方便,但重装系统后各种软件的安装真是头疼。尝试总结一下需要安装程序的配置资料,方便下次重装后,快速配置系统。

Anaconda 

Anaconda自动安装 python VScode Jupyter 等等程序,下载地址 https://www.anaconda.com/download/#macos

部分conda无法安装的包,可通过此命令安装:sudo /anaconda3/bin/pip install xxx ,更多资料 https://www.zhihu.com/question/41974592?from=profile_question_card

VScode 

code - 首选项 - 用户设置

{

    "python.pythonPath": "/anaconda3/bin/python",

    "editor.fontSize": 20,

    "editor.insertSpaces": true,

    "editor.tabSize": 4,

    "workbench.colorTheme": "Monokai",

    "editor.renderControlCharacters": true,

    "editor.renderWhitespace": "all",

    "explorer.confirmDragAndDrop": false,

    "python.linting.flake8Enabled": true

}

homebrew 

安装:使用Anaconda后,基本都用conda安装了,似乎没必要继续使用homebrew了。

替换源:https://lug.ustc.edu.cn/wiki/mirrors/help/brew.git

iterm2

安装 与 配色:待补充

~/.bash_profile 不执行问题:http://www.jb51.net/article/103394.htm

MySQL

安装:待补充

ABD Android Bridge

安装:https://www.jianshu.com/p/1b3fb1f27b67,下载命令行工具,而非IDE

Selenium+PhantomJS+FireFox

Selenium 2.48.0

PhantomJS

FireFox 35.01

Shadowsocks

安装:待补充 

OpenCV

conda安装Opencv: conda install -c https://conda.binstar.org/menpo opencv

猜你喜欢

转载自blog.csdn.net/earth9/article/details/79959104