python in RHEL 8
RHEL8에서 python 명령어를 사용하려면 아래 패키지를 설치하도록 한다.
$ yum install python3 $ python3 Python 3.6.8 (default, Sep 12 2021, 04:40:35) [GCC 8.4.1 20200928 (Red Hat 8.4.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>>
일반적으로 python
명령어를 사용하는데 python3
명령어만 존재하므로 아래와 같이 없는 명령어라는 오류가 발생한다.
$ python -bash: python: command not found
이럴때는 python3
명령어를 python
으로 명령어 대체 시켜준다.
$ alternatives --set python /usr/bin/python3
참조링크
로그인하면 댓글을 남길 수 있습니다.