Comments on: How to Install Python 3.6.4 on CentOS 7 https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/ Premium Linux Tutorials Since 2001 Mon, 12 Dec 2022 15:10:08 +0000 hourly 1 https://wordpress.org/?v=6.5.3 By: Muhammed Çayırlı https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-48368 Thu, 09 Jul 2020 20:21:46 +0000 https://www.rosehosting.com/blog/?p=25978#comment-48368 Thank you.

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-48242 Mon, 01 Jun 2020 14:39:56 +0000 https://www.rosehosting.com/blog/?p=25978#comment-48242 In reply to Lars.

Thanks for the info. The tutorial has been updated.

]]>
By: Lars https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-48241 Mon, 01 Jun 2020 08:44:46 +0000 https://www.rosehosting.com/blog/?p=25978#comment-48241 The Python repository URL has changed, new:

“`
sudo yum install -y https://repo.ius.io/ius-release-el7.rpm
“`

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-47981 Fri, 01 Nov 2019 21:38:18 +0000 https://www.rosehosting.com/blog/?p=25978#comment-47981 In reply to sokot.

You need to check the location of python 3 and set an alias in bash_profile

]]>
By: sokot https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-47980 Fri, 01 Nov 2019 11:21:36 +0000 https://www.rosehosting.com/blog/?p=25978#comment-47980 how to change default python 2.7 to 3.6 for centos 7
thanks

]]>
By: Ramon https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-47699 Sun, 31 Mar 2019 16:37:44 +0000 https://www.rosehosting.com/blog/?p=25978#comment-47699 Quite sure that now you can simply:

$ yum install -y epel-release
$ yum install -y python36

]]>
By: Arne https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-47688 Wed, 27 Mar 2019 08:21:10 +0000 https://www.rosehosting.com/blog/?p=25978#comment-47688 For method two, running `make install` is a bit risky. It puts the python executable into /usr/local/bin by default, potentially overwriting a pre-existing python version there, and also changing the behavior of scripts that do not specify whether they want to be run with python2 or python3.

In such a case, it is advisable to run `make altinstall` instead, or even better, run the initial configuration with a target path other than /usr/local/bin: `mkdir -p /home/user/alternative_pythons/python3.6 && ./configure –prefix=/home/user/alternative_pythons/python3.6`

]]>
By: Leonardo https://www.rosehosting.com/blog/how-to-install-python-3-6-4-on-centos-7/#comment-47609 Mon, 18 Feb 2019 20:09:26 +0000 https://www.rosehosting.com/blog/?p=25978#comment-47609 Method 1 OK ! thanks

]]>