linux执行命令提示命令不存在

方法一:添加环境变量

编辑全局配置文件vim /etc/profile(或用户配置文件文件vim ~/.bash_profile

#配置python
export PYTHON_HOME=/root/test_tools/Python-3.6.5
export PATH=$PATH:$PYTHON3_HOME/bin

配置生效:source ~/.bash_profile
(参考资料:Linux系统中.bash_profile文件详解)

方法2:添加软链接

ln -s /pyhon37/Python-3.7.7/python /usr/bin/python
ln -s /pyhon37/Python-3.7.7/python-config  /usr/bin/python-config

你可能感兴趣的:(linux执行命令提示命令不存在)