0

I'm looking for a way to get python3.4 for debian wheezy. I've been looking on repos but all I could find is 3.2 version. Does anybody know where I can find 3.4 package?

(Or maybe does anybody know if taiga.io-back can run on 3.2?)

Axel
  • 11

3 Answers3

3

In this method we will download the python 3.4 source code compile it and install it

    $ sudo  apt-get update 
    $ sudo cd /tmp
    $ sudo apt-get install libssl-dev openssl
    $ sudo  cd opt
    $ sudo wget https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz
    $ sudo  tar -xvzf Python-3.4.3.tgz

    $ cd Python-3.4.3
    $ sudo  ./configure
    $ sudo make
    $ sudo make install
psycho3
  • 277
  • This isn't really a helpful solution as it will basically leave the system in a state it is unreliable and re-installing the only safe solution is. – hspaans Jul 07 '15 at 00:02
  • @hspaans - On the other hand, it actually answers the question. – Fake Name Jan 13 '17 at 05:18
0

Currently the only safe way is to upgrade to Jessie. Seen the issues Python upgrades have I don't expect any backports or LTS updates also as the plan was to only support one release of Python per release.

Also the requirement for Taiga is Ubuntu 14.04 which translates to Debian Jessie.

hspaans
  • 562
0

Have a look at the DeadSnakes PPA. It's made for Ubuntu, but may help, and I also agree with hspaans, and here is the reason why:

Using Awesome window manager on CentOS 7

eyoung100
  • 6,252
  • 23
  • 53