Is there a way to install Python 3.x on Centos 7.x without breaking anything that depends on an older version of Python? This server is a minimal Centos 7 install that primarily runs a simple LAMP setup.
Yes. Just don't delete 2.x version (Sent from iPhone, so please accept my apologies in advance for any spelling or grammatical errors.)> On Mar 23, 2017, at 6:16 PM, Matt <matt.mailinglists at gmail.com> wrote: > > Is there a way to install Python 3.x on Centos 7.x without breaking > anything that depends on an older version of Python? This server is a > minimal Centos 7 install that primarily runs a simple LAMP setup. > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos
On Thu, 23 Mar 2017, Matt wrote:> Is there a way to install Python 3.x on Centos 7.x without breaking > anything that depends on an older version of Python? This server is a > minimal Centos 7 install that primarily runs a simple LAMP setup.yum install centos-release-scl yum search rh-python35 Install what you need, then you have a couple choices about how to use the SCL for Python 3.5. For your choices, see https://www.madboa.com/blog/2016/08/29/scl-intro/ -- Paul Heinlein <> heinlein at madboa.com <> http://www.madboa.com/
On Thu, 2017-03-23 at 18:16 -0500, Matt wrote:> Is there a way to install Python 3.x on Centos 7.x without breaking > anything that depends on an older version of Python???This server is a > minimal Centos 7 install that primarily runs a simple LAMP setup.Yes. # yum install python34> _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos
On Thu, 2017-03-23 at 23:27 +0000, Christian, Mark wrote:> On Thu, 2017-03-23 at 18:16 -0500, Matt wrote: > > > > Is there a way to install Python 3.x on Centos 7.x without breaking > > anything that depends on an older version of Python?? > Yes. > # yum install python34I should have mentioned that python34 comes from the epel repo. which can be installed from: https://fedoraproject.org/wiki/EPEL#How_can_I_use_these_extra_packages.3F
> # yum install python34I already have epel installed. If it breaks something is it as simple as yum erase python34 to restore everything back to normal? On Thu, Mar 23, 2017 at 6:27 PM, Christian, Mark <mark.christian at intel.com> wrote:> On Thu, 2017-03-23 at 18:16 -0500, Matt wrote: >> Is there a way to install Python 3.x on Centos 7.x without breaking >> anything that depends on an older version of Python? This server is a >> minimal Centos 7 install that primarily runs a simple LAMP setup. > Yes. > # yum install python34 > > >> _______________________________________________ >> CentOS mailing list >> CentOS at centos.org >> https://lists.centos.org/mailman/listinfo/centos > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos
I much prefer the Anaconda distribution of Python3. It installs for a single user and is completely self contained. Also much more recent versions are available: https://www.continuum.io/downloads On 24 March 2017 at 00:16, Matt <matt.mailinglists at gmail.com> wrote:> Is there a way to install Python 3.x on Centos 7.x without breaking > anything that depends on an older version of Python? This server is a > minimal Centos 7 install that primarily runs a simple LAMP setup. > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos >