简体   繁体   中英

How can I remove a version of Python in Ubuntu 12.04?

I have just installed Ubuntu 12.04 which comes with Python 2.7. I have installed Python 3.3, so now I have both versions. For example, if I type python in the terminal I get version 2.7 and if I type python3.3 I get that version.

I don't see why I would need 2 versions (?) so how do I uninstall Python 2.7? And if I do so, will the "python" command then point to Python 3.3?

VERY IMPORTANT EDIT

Removing an older version of python may be very dangerous and can cause trouble in your whole system! For your case instead of removing the older python you can simply use an alias in your terminal, so that when you type python it opens python3.3;

Here is the procedure, add this line:

alias python=python3

Into ~/.bash_aliases or: ~/.bashrc


Btw I guess If you ask this question in AskUbuntu you may have a quicker/better response!

You should never remove the builtin Python in your Ubuntu distribution. Bad things will happen if you do.

It is highly recommended to use virtualenv to install other Python environments.

Here's a good Stackoverflow question that demonstrates how:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM