i need to install python 3.2 but i have python 2.7 installed already on fedora 16.
I download python 3.2 and installed it but when i run this command:
>python
I got:
Python 2.7.3 (default, Jul 24 2012, 11:41:34)
[GCC 4.6.3 20120306 (Red Hat 4.6.3-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
How can i remove or uninstall this version?
The default python in Fedora is still python 2.x (see here). So you need to type “python3” to start the 3.x interpreter. It is not a good idea to remove python 2.x from your Fedora installation because there are likely a number of system functions that use/require python 2.x. If you really want to be able to just type “python” to run the 3.x interpreter, I recommend that you modify the
.bash_loginfile in your home directory to makepythonan alias to the default python 3 interpreter in/usr/bin.