如何在CentOS 7中将IDLE 3.6.2与Python 3.6.2相关联

时间:2017-08-10 20:52:23

标签: python centos

{p> CentOS 7附带Python2.7.5

我安装了Python 3.6.2,并且能够通过输入IDLE 3.6.2在终端中启动IDLE 3.6.2。

但是,当我使用F5运行时,我仍然会Python 2.7.5而不是python 3.6.2.

我试过

./configure

make altinstall

没有解决问题。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:0)

运行以下命令:

  • yum groupinstall "Development Tools"

  • yum -y install yum-utils yum-builddep python zlib-devel gcc

  • cd /usr/src

  • wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2rc1.tgz

  • tar xzf Python-3.6.2rc1.tgz

  • cd Python-3.6.2rc1/

  • ./configure

  • make

  • make install

  • which python3 && python3 -V

答案 1 :(得分:0)

我发现使用Inline with Upstream Stable最容易在Centos机器上获得Python 3.6。以下是我在该主题上发现的完整教程:tutorial

根据您的需求,替代解决方案可能是使用不需要安装root的Anaconda发行版。 (抱歉没有链接,但我只限发布两个,但很容易google)。