• 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版本的看图

     

  • 相关阅读:
    USACO 6.4 章节
    USACO 6.3 章节 你对搜索和剪枝一无所知QAQ
    USACO 6.1 章节
    USACO 5.5 章节
    USACO 5.4 章节
    USACO 5.3 章节
    99乘法表
    mini整数计算器
    python爬虫-爬取天气预报内容
    python实时监控服务器性能
  • 原文地址:https://www.cnblogs.com/lesten/p/13544038.html
Copyright © 2020-2023  润新知