I accidentally downloaded python2.6.6 on my centos Virtual Machine from python.org's official download package and compiled it to source.
Now in my /usr/local/bin I have a python2.6 shell available and now if I use which python
it will give me the path of /usr/local/bin instead of original python2.7's path which is /usr/bin.
Since I installed it from source, yum doesn't recognise python2.6.6 as a package and I want to get rid of it.
If I do rpm -q python
it gives me a result of python-2.7.5-48.0.1.el7.x86_64
Is it possible to uninstall python2.6.6 and I will just re-point my python system variable to /usr/bin again?