系统相关
首页 > 系统相关> > [LINUX] 在 Win10 上搭建好用的终端开发环境:windows terminal + git bash + zsh + oh-my-zsh

[LINUX] 在 Win10 上搭建好用的终端开发环境:windows terminal + git bash + zsh + oh-my-zsh

作者:互联网


目录


1、安装 Windows Terminal

Microsoft Store,或从 Windows 开始菜单中启动 Microsoft Store 应用程序并搜索 Terminal

注意: 注意不要选择早期的 Windows Terminal Preview 应用程序。

注意: 其对 windows 版本有要求,需要更新系统(更新系统卡死在 99%,需要参考参考链接2;有些浏览器连易升都下载不了,建议用 google 浏览器)


2、安装 git for windows

下载地址:https://gitforwindows.org,下载好之后,全部采用默认安装。


3、设置 Windows Terminal


4、安装 zsh


5、安装 Oh my zsh

在 zsh 里执行(curl)

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

或者用 wget

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

最后,用 VIM 编辑 ~/.bashrc 文件,在其最后加入 zsh,表示终端打开默认执行 zsh。


参考链接

[1]. Windows Terminal完整指南
[2]. Windows 10更新失败在百分99处卡住的处理方法
[3]. Install Terminal + git-bash + zsh + oh-my-zsh on Windows 10



: 陆续更新中...

标签:git,oh,Windows,zsh,Terminal,安装,ohmyzsh
来源: https://www.cnblogs.com/zjutlitao/p/15855562.html