zoukankan      html  css  js  c++  java
  • Mac 安装常用软件环境

    1、安装 Homebrew

    一开始走了一些弯路,不能FQ导致安装速度极慢,而且一度中断 ,各种排错、修复、纠结几个小时后,找到国内源的解决方案。

    来自这里: https://zhuanlan.zhihu.com/p/111014448

    安装脚本

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

    卸载脚本

    /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"

    2、安装chrome

    brew cask install google-chrome

    3、安装 sublimetext

    brew cask install sublime-text

    4、安装 vscode

    brew cask install visual-studio-code

    5、安装 sourcetree (会有点慢)

    brew cask install sourcetree

    6、安装 Mounty (NTFS 文件系统读写)

    brew cask install mounty

    7、安装 iTerm2

    brew cask install iTerm2

      为 iTerm2 安装 onmyzsh 和 zsh-autosuggestions 以及 zsh-syntax-highlighting 插件 

    git clone https://github.com/ohmyzsh/ohmyzsh.git ~/
    mv ~/ohmyzsh ~/.oh-my-zsh

     ~/.zshrc 中追加  ~/.oh-my-zsh/templates/zshrc.zsh-template 的内容

     安装插件

    git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
    git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
    source ~/.zshrc

     8、安装 腾讯Mac版本的看图

     

  • 相关阅读:
    c#中枚举的使用
    WEB页面下载内容导出excel
    浏览器使用说明
    ChromiumWebBrowser 禁用右键菜单
    ExpressionHelp2
    安装T4环境
    打印功能
    操作图片
    软件开发中的框架概念和技术路线概念
    Grpc-Client引用Server的proto文件时Build Fail
  • 原文地址:https://www.cnblogs.com/lesten/p/13544038.html
Copyright © 2011-2022 走看看