千万别用PATH=$PATH:/配置Linux环境变量!
如下三种方法来设置环境变量:
1、直接用export命令:(临时)
export PATH=$PATH:/opt/tools/bin
可用命令export查看
2、修改profile文件:(永久)
在文件中加入:export PATH="$PATH:/opt/tools/bin"
执行:. /etc/profile (注意:"."和"/etc/profile" 之间有空格.)
3、修改.bashrc文件:(永久)(例:/root/.bashrc)
在文件中加入:export PATH="$PATH:/opt/tools/bin"
执行:. /root/.bashrc
最后可以通过 echo $PATH 来查看环境变量
千万别用
PATH=$PATH:/hwfssz8/MGI_BCC/USER/dengziqing1/software/Python-3.9.0/bin/配置环境变量!
因为是临时的不是永久的!
May we all proceed with wisdom and grace.
https://www.cnblogs.com/YlnChen/