在Centos7 Raspberry Pi上安装Python3

时间:2017-11-09 00:54:02

标签: python-3.x centos raspberry-pi yum

我在我的pi上安装了centos7上的python3时遇到了麻烦 我从这里得到了我的centos: https://wiki.centos.org/SpecialInterestGroup/AltArch/Arm32/RaspberryPi3

似乎我无法安装正确的存储库来获取yum的python3。我在线尝试了所有的教程,但都没有。任何想法如何在pi上做到这一点?

1 个答案:

答案 0 :(得分:4)

你可以毫无问题地安装python 3.4。

在终端输入:

cat > /etc/yum.repos.d/epel.repo << EOF

然后加入以下几行:

[epel]
name=Epel rebuild for armhfp
baseurl=https://armv7.dev.centos.org/repodir/epel-pass-1/
enabled=1
gpgcheck=0

EOF

然后,您需要安装包含python34的epel-release:

yum install epel-release

之后,您就可以安装Python 3.4。

yum install python34

获得点子,

yum install python34-pip