创建~/.bash_profile文件 vim ~/.bash_profile文件,进行环境变量的配置 完了之后使用zsh终端发现配置的环境变量还是无效,每次打开zsh都需要手动source ~/.bash_profile 解决方案:修改zsh的配置文件,让其在每次启动的时候来读取~/.bash_profile里面的配置。vim~/.zshrc在文件的最后面加上source~/.bash_profile sourc...
~/.bash_profile生效的前提是我们需要使用bash作为终端,随着系统的升级MAC会将默认终端切换为zsh,如果我们稍不注意按照提示进行了修改,那么就会导致~/.bash_profile无效(本人就是这种情况)。 Thedefaultinteractive shellisnow zsh.Toupdate your accounttouse zsh, please run `chsh -s /bin/zsh`.Formore details...
然后查资料得知,安装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文件 vim ~/.bash_profile文件,进行环境变量的配置 完了之后使用zsh终端发现配置的环境变量还是无效,每次打开zsh都需要手动source ~/.bash_profile 解决方案:修改zsh的配置文件,让其在每次启动的时候来读取~/.bash_profile里面的配置。vim ~/.zshrc在文件的最后面加上source ~/.bash_profile s...
完了之后使用zsh终端发现配置的环境变量还是无效,每次打开zsh都需要手动source ~/.bash_profile 解决方案:修改zsh的配置文件,让其在每次启动的时候来读取~/.bash_profile里面的配置。vim~/.zshrc在文件的最后面加上source~/.bash_profile source ~/.zshrc 使其立即生效 ...
创建~/.bash_profile文件 vim ~/.bash_profile文件,进行环境变量的配置 完了之后使用zsh终端发现配置的环境变量还是无效,每次打开zsh都需要手动source ~/.bash_profile 解决方案:修改zsh的配置文件,让其在每次启动的时候来读取~/.bash_profile里面的配置。vim ~/.zshrc在文件的最后面加上source ~/.bash_profile ...
mac系统使用zsh修改.bash_profile文件失效问题 因为终端默认修改为了zsh,使用.bash_profile配置环境变量之后重启终端就会配置失效 使用: 在终端输入vim ~/.zshrc 配置环境变量 之后: source ~/.bash_profile
比如说,想声明一个别名ll,通常来说,我们以为是以下几个文件: .profile .bashrc .bash_profile alias ll="ls -l" 1. 2. 3. 4. 5. 结果发现根本没用。为什么呢?原因也简单,MAC默认的是zsh,所以,默认的配置文件是: .zshrc 1. 还有个办法,更换为bash,然后就可以使用.bashrc了。
mac系统中配置了环境变量只能在当前终端生效,切换了终端就无效了,查了下问题所在。mac系统会预装一个终极shell - zsh,环境变量读取在 .zshrc 文件下。 2、解决方案 1、切换终端到bash 切换终端到bash chsh -s /bin/bash 切换终端到zsh chsh -s /bin/zsh 2、创建新的zsh环境变量文件 .zshrc 填写环境变量之...
简介:MAC修改.bashrc/.bash_profile无效,默认的用户配置文件是.zshrc, 比如说,想声明一个别名ll,通常来说,我们以为是以下几个文件: .profile.bashrc.bash_profilealias ll="ls -l" 结果发现根本没用。为什么呢?原因也简单,MAC默认的是zsh,所以,默认的配置文件是: ...