-bash: /usr/bin/python: Too many levels of symbolic links 解决办法。


 

1、问题

[root@centos7 Python-3.9.4]# ln -s python /usr/bin/python [root@centos7 Python-3.9.4]# python -bash: /usr/bin/python: Too many levels of symbolic links

 

2、删除建立的软连接

rm -f /usr/bin/python

 

3、以绝对路径建立软连接

[root@centos7 Python-3.9.4]# ln -s /home/software/python/Python-3.9.4/python /usr/bin/python [root@centos7 Python-3.9.4]# python Python 3.9.4 (default, May  1 2021, 22:41:00) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> quit()

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM