将bash切换为zsh :chsh -s /bin/zsh zsh的配置文件不再是/.zsh_profile去调用/.zshrc,而是直接就是/.zshrc就可以了.所以对于zsh的一切设置,直接去/.zshrc中设置. 详细的配置教程:传送门 什么是oh-my-zsh ? oh-my-zsh 是zsh的一个配置开源配置文件,因为手动配置zsh太麻烦. 接下来我们需要下载 oh-my-zsh...
1.在当前用户的 .zshrc文件中添加下面命令 source ~/.bash_profile 2.更新最新配置 source ~/.zshrc
然后查资料得知,安装zsh后他会自动执行~/.zshrc文件,而里面并没有包含.bash_profile 一、Mac系统的环境变量,加载顺序为: /etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc 2. 在其最后面加入 1 2 3 if[ -f ~/.bash_profile ];then source~/.bash_profile fi 即可完成...
.bash_profile和.zshrc都在用户目录下(~) .bash_profile需要使用source执行下,方可生效(可能需要手动创建.bash_profile) .zshrc修改环境变量,保存修改重启终端即可(需要安装oh-my-zsh自动创建.zshrc,直接手动创建.zshrc没有用) https://www.jianshu.com/p/0d265d9f914boh-my-zsh安装 注意: 如果你的命令行安装...
至于zsh ,两种模式解析的都是~/.zshrc,所以需要你自己再~/.zshrc中判断情况。 最后配一张插图:(侵删) /etc/profile The systemwide initialization file, executed for login shells ~/.bash_profile The personalinitializationfile, executed for login shells ...
zsh每次打开Terminal都需要sourcebash_profile问题zsh 每次打开Terminal都需要source bash_profile问题 zsh加载的是 ~/.zshrc⽂件,⽽ ‘.zshrc’ ⽂件中并没有定义任务环境变量。解决办法,在~/.zshrc⽂件最后,增加⼀⾏:source .bash_profile alias alias gs="git status"alias gc="git commit -m "a...
使用sudo apt-get install uuid-dev安装uuid开发接口后, 头文件/usr/include/uuid/uuid.h存在,但是...
~/.bash_profile是一个用户级别的Bash配置文件,它在用户登录时执行。该文件通常用于设置环境变量、别名等,以便为Bash Shell提供个性化的配置。 3. 说明在zsh环境下应使用的配置文件 在zsh环境下,你应该使用~/.zshrc文件来配置你的环境。~/.zshrc文件是zsh Shell的配置文件,它在每次启动一个新的zsh会话时都会被读...
一、创建.zshrc文件 命令行:touch .zshrc二、打开.zshrc文件并写入source.bash_profile命令行:open .zshrccommand + S 保存后新建一个终端即可。 macOS问题 zsh: command not found: adb 的环境变量了,从而才能使用adb命令。 然而在使用zshshell的时候,并没有把相关的环境变量的配置设置到 .zshrc中(功能上类似bas...
切回bash即可。zsh是比bash更强大shell,如有兴趣,可以自行了解。下面是两者切换方法: 切换bash--->chsh -s /bin/bash 切换zsh--->chsh -s /bin/zsh 使用zsh 在原先的.bash_profile创建.zshrc就行了,作用和.bash_profile一致,在其中配置环境路径。