Mac执行了source ~/.bash_profile环境变量不生效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac执行了source ~/.bash_profile环境变量不生效相关的知识,希望对你有一定的参考价值。
参考技术A 自己在 ~/.bash_profile 中配置环境变量, 可是每次重启终端后配置的不生效.需要重新执行 : $source ~/.bash_profile发现zsh加载的是 ~/.zshrc文件,而 ‘.zshrc’ 文件中并没有定义任务环境变量。
解决办法
在~/.zshrc文件最后,增加一行:
source ~/.bash_profile
Mac电脑在配置Iterm2之后,每次都要执行source ~/.bash_profile 配置的环境变量才生效
Mac每次都要执行source ~/.bash_profile 配置的环境变量才生效
- 自己在
~/.bash_profile
中配置环境变量, 可是每次重启终端后配置的不生效.需要重新执行 :source ~/.bash_profile
- 发现zsh加载的是
~/.zshrc
文件,而‘.zshrc’
文件中并没有定义任务环境变量。 - 解决办法
- 在
~/.zshrc
文件最后,增加一行:source ~/.bash_profile
以上是关于Mac执行了source ~/.bash_profile环境变量不生效的主要内容,如果未能解决你的问题,请参考以下文章
Mac安装zsh后必须多次执行`source .bash_profile`解决方案
Mac 每次都要执行source ~/.bash_profile
Mac 每次都要执行source ~/.bash_profile
为啥linux 的 source命令在linux的脚本中没有作用 我使用了#!/bin/sh以及#!/bin/bash 都不好用