解决ssh连入linux服务器~/.bashrc不执行的方法

配置新服务器,使用sh脚本安装anaconda。按照提示自动conda init后,仍然没有激活conda的base环境。但是经过检查,发现激活脚本已经正确的写入了~/.bashrc文件中。

经过网上查阅发现,ssh这种login的登录方式可能会导致~/.bashrc中环境变量不执行。

解决方法有三个:

(1) 在shell内输入bash并回车(不能根治问题)。

(2) 将需要激活的环境变量复制到~/.bash_profile文件中,并执行 source ~/.bash_profile。因为通过ssh登录linux服务器,~/.bash_profile文件是会自动执行的。

(3) 在~/.bash_profile文件内添加以下脚本,并执行 source ~/.bash_profile。

# if running bash  
if [ -n "$BASH_VERSION" ]; then  
    # include .bashrc if it exists  
    if [ -f "$HOME/.bashrc" ]; then  
        . "$HOME/.bashrc"  
    fi  
fi  

你可能感兴趣的:(环境配置与使用)