Reputation: 1614
I have installed Python 2.7 on my system which is loaded with Fedora 13. But when I check the Python version, it is 2.6. Also, installing some packages which are dependent on 2.7 will not work.
Actually when we install Fedora 13 Python 2.6 comes as default, but after I install Python 2.7 it is not taking in Fedora 13. Anybody know how we can set the manually installed Python 2.7 to be default in Fedora 13 instead of the default Python 2.6?
Upvotes: 0
Views: 1115
Reputation: 16624
I guess this is not that easy as many system tool depend on Python. Try to use virtualenv to create an isolated Python environment for your packages.
Upvotes: 2