Linux/CentOS 7
[CentOS 7] Python3 Install
newly0513
2021. 2. 8. 14:10
728x90
반응형
1. Package Update
# 현재 설치된 모든 패키지를 업데이트
yum update -y
2. Install Python3
# python3 설치
yum install -y python3
3. Python3
# Python3 설치 확인 (아래와 같이 출력되면 정상)
[root@localhost ~] python3
Python 3.6.8 (default, Nov 16 2020, 16:55:22)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
728x90
반응형