Notice
Recent Posts
Recent Comments
Link
- Today
- Total
엔지니어스 - Engineeus
[Ubuntu] Python 2, Python3 설치 본문
728x90
start()
{
본 포스트에서는 Ubuntu 환경에서 Python 2버전과 Python 3버전을 설치 하는 방법을 다뤄보겠습니다.
Python 2
Python 2.x 버전은 이미 우분투 16.04 설치시에 깔려 있습니다.
실행 방법은 터미널창을 연 후 아래와 같습니다.
python
그럼 Python 2.x.x 라고 버전이 나오며 이제 파이썬을 사용 할 수 있게 됩니다.
종료 방법은 ctrl+z 입니다.
Python 3
Python 3.x 버전은 따로 설치 해야 합니다.
설치 방법은 아래와 같습니다.
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.5
실행 방법은 터미널창을 연 후 아래와 같습니다.
python3
그럼 Python 3.x.x 라고 나오며 이제 파이썬을 사용 할 수 있게 됩니다.
return 0;
}
'Autonomous Tech. > Installation' 카테고리의 다른 글
[Windows] 텐서플로우(TensorFlow) 1.15.2 버전 설치 (2) | 2020.03.08 |
---|---|
[Ubuntu] Python 2, Python 3에 OpenCV 설치하기 (Binding) (1) | 2020.01.28 |
[Ubuntu] pip으로 PyTorch 설치하기 - Linux (0) | 2020.01.28 |
[Windows] 가상머신(Virtual Box)에 우분투 16.04 설치 (0) | 2020.01.24 |
[Windows] Visual Studio Code (VS Code) - 마우스 Zoom (0) | 2020.01.18 |
Comments