본문 바로가기
지식/Linux

Raspberry pi - Python3 설치

by TheEC 2021. 5. 30.

라즈베리파이에 파이썬3을 설치하는 방법을 알아본다.

$ sudo apt-get update
$ sudo apt-get upgrade

$ sudo apt-get
$ wget https://www.python.org/ftp/python/3.9.5/Python-3.9.5.tgz
$ tar zxf Python-3.9.5.tgz
$ cd Python-3.9.5
$ sudo ./configure --enable-optimizations
$ make -j 4
$ sudo make install

$ python3 -V
Python 3.9.5  <-이런식으로 나오면 된다

'지식 > Linux' 카테고리의 다른 글

Raspberry pi - minidlna  (0) 2022.01.09
Raspberry pi - mopidy 설치  (0) 2021.05.30
Raspberry pi - mopidy install 오류  (0) 2021.05.29
Raspberry pi - SimpleHTTPServer 암호화하기  (0) 2021.04.11
Raspberry pi - SimpleHTTPServer 실행하기  (0) 2021.04.10

댓글