美文网首页
Oh My Zsh 安装

Oh My Zsh 安装

作者: 吉吉的纸飞机 | 来源:发表于2022-01-08 16:34 被阅读0次
    install zsh
    chsh -s /bin/zsh
    

    官方

    # curl
    sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
    # wget
    sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
    

    国内地址

    # curl
    sh -c "$(curl -fsSL https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
    # wget
    sh -c "$(wget -O- https://gitee.com/pocmon/ohmyzsh/raw/master/tools/install.sh)"
    

    gitee 地址

    https://gitee.com/pocmon/ohmyzsh
    

    相关文章

      网友评论

          本文标题:Oh My Zsh 安装

          本文链接:https://www.haomeiwen.com/subject/xhgecrtx.html