379 words
2 minutes
windows zsh配置
2024-10-24

参考教程:

use zsh on windows

https://miaotony.xyz/2020/12/13/Server_Terminal_gitbash_zsh/#toc-heading-5

https://dev.to/equiman/zsh-on-windows-without-wsl-4ah9

  • I changed some in .zshrc to deal with bug

    Untitled 1

    plugins=(git wd)
    
    plugins=(zsh-autosuggestions)
    plugins=(zsh-syntax-highlighting)
    
    source $ZSH/oh-my-zsh.
    
    

到这一步已经可以正常使用linux命令了

但我在使用conda的过程中遇到了报错#

  • 报错截图

    Untitled 1

    Untitled 1

可以看到这是两个报错,一个是conda activate失败,另外一个是zsh启动主题的过程中遇到了Windows换行符(这是真烦人啊)

google到两个错误均由conda init命令引起,尝试解决方法:

https://www.cnblogs.com/kphang/p/17264764.html

最终解决方案:#

https://github.com/conda/conda/issues/9922#issuecomment-1361695031

将conda init添加的内容改为

eval "$('/c/path/to/miniconda3/Scripts/conda.exe' 'shell.zsh' 'hook' | sed -e 's/"$CONDA_EXE" $_CE_M $_CE_CONDA "$@"/"$CONDA_EXE" $_CE_M $_CE_CONDA "$@" | tr -d \x27\\r\x27/g')"

路径改为你的conda.exe路径,完美解决!

Untitled 1

windows zsh配置
https://tubehao.github.io/blog/posts/tools/windows-zsh配置/windows-zsh/
Author
tubehao
Published at
2024-10-24