/etc/profile 是全局变量用于所有用户
~/.bash_profile 是当前用户变量

编辑vim ~/.bash_profile
生效 source ~/.bash_profile

例如配置python 环境变量

下载安装完python后,可以建立软链接,将Python路径链接到 /usr/bin中,
在 vim ~/.bash_profile 文件中path后边加上 /usr/bin就可以读到python了,在执行命令时就不需要进入Python 路径再用pip 和python

软链接,相当于快捷键,就像windows上的桌面图标,可以直接在桌面图标执行命令

ln -s /usr/local/python3/bin/python3.7 /usr/bin/python3
ln -s /usr/local/python3/bin/pip3.7 /usr/bin/pip3
图省事儿,把红线部分全加到配置里了
在这里插入图片描述
/etc/profile和/root/.bash_profile区别
/etc/profile,优先级最高,是全局的,是私有的,用于整个系统所有用户
~/.bashrc和 ~/.bash_profile, ~/.profile 用于各个用户,这里的"~"符号就是各当前用户的$HOME
~/.bash_profile 和 ~/.profile 只在登陆时读取一次
~/.bashrc 每次都读取
~/.bash_profile 和 ~/.profile 的区别在于
bash 只读取~/.bash_profile;而对于 ~/.profile 来说,不光bash, 其他shell 也读 ~/.profile

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐