Raspberry Pi - How To Install Python 3
Hi guys! Today we’re going to show you how to install Python 3 on a Raspberry Pi. This is very, very easy so this is going to be a very short guide. I can’t emphasize how easy and fast of a process this is. This should require almost no effort at all. We are assuming that you are running Raspberry Pi OS.
Steps:
- Open a terminal
Update your repo info
sudo apt update
Install the Python 3 package:
sudo apt install python3
If you also want to install Idle along with Python 3 you can use the following command instead:
sudo apt install python3 idle3
That concludes our exhaustive lesson on how to install this package on a Raspberry Pi. Hopefully this worked for you.