Uninstall python 3.6
Following this guide Testing Deployment Using a Staging Site, I have installed python 3.6 on Ubuntu 16.04 using:
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.6
Unfortunately I now want to use the anaconda package manager, and so to avoid a conflict I'd like to remove all traces of my upgrade. How?
16.04 python
|
show 2 more comments
Following this guide Testing Deployment Using a Staging Site, I have installed python 3.6 on Ubuntu 16.04 using:
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.6
Unfortunately I now want to use the anaconda package manager, and so to avoid a conflict I'd like to remove all traces of my upgrade. How?
16.04 python
1
Reinstall the Ubuntu version. Do not, at any time, leave your system without a working python installation
– Nonny Moose
May 3 '17 at 13:00
these are multiple other pythons on the system, including python 3.5 and 2.7. I just want to avoid conflicts with python3.6. in fact if I do python -V , I get 3.5.
– user61629
May 3 '17 at 13:05
1
First of create a snapshot or backup of your system. apt-get purge python3.6 will remove python3.6 and the all related packages, then try conda. If anything went wrong you can still restore the system to the original state.
– ampika
May 3 '17 at 13:09
See How can PPAs be removed?
– steeldriver
May 3 '17 at 13:10
Sorry for my ignorance, but what would you recommend for a system "snapshot"?
– user61629
May 3 '17 at 14:30
|
show 2 more comments
Following this guide Testing Deployment Using a Staging Site, I have installed python 3.6 on Ubuntu 16.04 using:
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.6
Unfortunately I now want to use the anaconda package manager, and so to avoid a conflict I'd like to remove all traces of my upgrade. How?
16.04 python
Following this guide Testing Deployment Using a Staging Site, I have installed python 3.6 on Ubuntu 16.04 using:
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
sudo apt-get install python3.6
Unfortunately I now want to use the anaconda package manager, and so to avoid a conflict I'd like to remove all traces of my upgrade. How?
16.04 python
16.04 python
edited Mar 6 '18 at 9:45
Drakonoved
7462515
7462515
asked May 3 '17 at 12:59
user61629user61629
50041226
50041226
1
Reinstall the Ubuntu version. Do not, at any time, leave your system without a working python installation
– Nonny Moose
May 3 '17 at 13:00
these are multiple other pythons on the system, including python 3.5 and 2.7. I just want to avoid conflicts with python3.6. in fact if I do python -V , I get 3.5.
– user61629
May 3 '17 at 13:05
1
First of create a snapshot or backup of your system. apt-get purge python3.6 will remove python3.6 and the all related packages, then try conda. If anything went wrong you can still restore the system to the original state.
– ampika
May 3 '17 at 13:09
See How can PPAs be removed?
– steeldriver
May 3 '17 at 13:10
Sorry for my ignorance, but what would you recommend for a system "snapshot"?
– user61629
May 3 '17 at 14:30
|
show 2 more comments
1
Reinstall the Ubuntu version. Do not, at any time, leave your system without a working python installation
– Nonny Moose
May 3 '17 at 13:00
these are multiple other pythons on the system, including python 3.5 and 2.7. I just want to avoid conflicts with python3.6. in fact if I do python -V , I get 3.5.
– user61629
May 3 '17 at 13:05
1
First of create a snapshot or backup of your system. apt-get purge python3.6 will remove python3.6 and the all related packages, then try conda. If anything went wrong you can still restore the system to the original state.
– ampika
May 3 '17 at 13:09
See How can PPAs be removed?
– steeldriver
May 3 '17 at 13:10
Sorry for my ignorance, but what would you recommend for a system "snapshot"?
– user61629
May 3 '17 at 14:30
1
1
Reinstall the Ubuntu version. Do not, at any time, leave your system without a working python installation
– Nonny Moose
May 3 '17 at 13:00
Reinstall the Ubuntu version. Do not, at any time, leave your system without a working python installation
– Nonny Moose
May 3 '17 at 13:00
these are multiple other pythons on the system, including python 3.5 and 2.7. I just want to avoid conflicts with python3.6. in fact if I do python -V , I get 3.5.
– user61629
May 3 '17 at 13:05
these are multiple other pythons on the system, including python 3.5 and 2.7. I just want to avoid conflicts with python3.6. in fact if I do python -V , I get 3.5.
– user61629
May 3 '17 at 13:05
1
1
First of create a snapshot or backup of your system. apt-get purge python3.6 will remove python3.6 and the all related packages, then try conda. If anything went wrong you can still restore the system to the original state.
– ampika
May 3 '17 at 13:09
First of create a snapshot or backup of your system. apt-get purge python3.6 will remove python3.6 and the all related packages, then try conda. If anything went wrong you can still restore the system to the original state.
– ampika
May 3 '17 at 13:09
See How can PPAs be removed?
– steeldriver
May 3 '17 at 13:10
See How can PPAs be removed?
– steeldriver
May 3 '17 at 13:10
Sorry for my ignorance, but what would you recommend for a system "snapshot"?
– user61629
May 3 '17 at 14:30
Sorry for my ignorance, but what would you recommend for a system "snapshot"?
– user61629
May 3 '17 at 14:30
|
show 2 more comments
1 Answer
1
active
oldest
votes
Warning: I have tested this solution, but not very thoroughly. Make a backup, and proceed with caution.
Remove the repo:
sudo add-apt-repository --remove ppa:fkrull/deadsnakes
Refresh apt cache:
sudo apt-get update
Remove the package:
sudo apt-get remove --purge python3.6
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f911448%2funinstall-python-3-6%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Warning: I have tested this solution, but not very thoroughly. Make a backup, and proceed with caution.
Remove the repo:
sudo add-apt-repository --remove ppa:fkrull/deadsnakes
Refresh apt cache:
sudo apt-get update
Remove the package:
sudo apt-get remove --purge python3.6
add a comment |
Warning: I have tested this solution, but not very thoroughly. Make a backup, and proceed with caution.
Remove the repo:
sudo add-apt-repository --remove ppa:fkrull/deadsnakes
Refresh apt cache:
sudo apt-get update
Remove the package:
sudo apt-get remove --purge python3.6
add a comment |
Warning: I have tested this solution, but not very thoroughly. Make a backup, and proceed with caution.
Remove the repo:
sudo add-apt-repository --remove ppa:fkrull/deadsnakes
Refresh apt cache:
sudo apt-get update
Remove the package:
sudo apt-get remove --purge python3.6
Warning: I have tested this solution, but not very thoroughly. Make a backup, and proceed with caution.
Remove the repo:
sudo add-apt-repository --remove ppa:fkrull/deadsnakes
Refresh apt cache:
sudo apt-get update
Remove the package:
sudo apt-get remove --purge python3.6
edited Aug 1 '17 at 17:56
answered Aug 1 '17 at 17:15
wjandreawjandrea
8,50742259
8,50742259
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f911448%2funinstall-python-3-6%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
1
Reinstall the Ubuntu version. Do not, at any time, leave your system without a working python installation
– Nonny Moose
May 3 '17 at 13:00
these are multiple other pythons on the system, including python 3.5 and 2.7. I just want to avoid conflicts with python3.6. in fact if I do python -V , I get 3.5.
– user61629
May 3 '17 at 13:05
1
First of create a snapshot or backup of your system. apt-get purge python3.6 will remove python3.6 and the all related packages, then try conda. If anything went wrong you can still restore the system to the original state.
– ampika
May 3 '17 at 13:09
See How can PPAs be removed?
– steeldriver
May 3 '17 at 13:10
Sorry for my ignorance, but what would you recommend for a system "snapshot"?
– user61629
May 3 '17 at 14:30