Python3.4 package for Debian Wheezy
Clash Royale CLAN TAG#URR8PPP
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?)
debian python packet
add a comment |
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?)
debian python packet
add a comment |
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?)
debian python packet
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?)
debian python packet
debian python packet
asked Jul 6 '15 at 10:35
AxelAxel
611
611
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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
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 7 '15 at 0:02
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
add a comment |
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.
add a comment |
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
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f214134%2fpython3-4-package-for-debian-wheezy%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
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 7 '15 at 0:02
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
add a comment |
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
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 7 '15 at 0:02
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
add a comment |
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
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
answered Jul 6 '15 at 11:03
psycho3psycho3
1576
1576
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 7 '15 at 0:02
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
add a comment |
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 7 '15 at 0:02
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
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 7 '15 at 0:02
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 7 '15 at 0:02
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
@hspaans - On the other hand, it actually answers the question.
– Fake Name
Jan 13 '17 at 5:18
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Jul 7 '15 at 0:08
answered Jul 7 '15 at 0:00
hspaanshspaans
496210
496210
add a comment |
add a comment |
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
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
add a comment |
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
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
add a comment |
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
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
edited Apr 13 '17 at 12:36
Community♦
1
1
answered Jul 7 '15 at 0:18
eyoung100eyoung100
4,8131441
4,8131441
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
add a comment |
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
Unfortunately this repository is unsupported now.
– Rui F Ribeiro
Jan 10 '17 at 19:03
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f214134%2fpython3-4-package-for-debian-wheezy%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown