Issue
I am having trouble installing python3 on centos7 on my pi.
I got my build of centos from here:
rel="nofollow noreferrer">https://wiki.centos.org/SpecialInterestGroup/AltArch/Arm32/RaspberryPi3
and it seems I can't install the right repositories to get python3 with yum. I tried all the tutorials online, and none of them work. Any ideas how to do this on the pi?
Solution
You can actually install python 3.4 without any problem.
At the terminal, enter:
cat > /etc/yum.repos.d/epel.repo << EOF
then put in the following lines:
[epel]
name=Epel rebuild for armhfp
baseurl=https://armv7.dev.centos.org/repodir/epel-pass-1/
enabled=1
gpgcheck=0
EOF
then, you need to install epel-release which contains python34:
yum install epel-release
after that, you are ready to install Python 3.4.
yum install python34
to get the pip,
yum install python34-pip
Answered By - S. Saeid Hosseini Answer Checked By - Mary Flores (WPSolving Volunteer)