In Ubuntu, I used to have (two hours ago) three versions of python :
- 2.7 and 3.4.0 installed by default in 'usr/bin'
- 3.4.3 that I built manually from the official source-code, which I found was in 'usr/local/bin'
(that means, at a certain point i was able to run the tree versions of python at the same time)
But now, the 3.4.0 version has become a 3.4.3, now i have a 2.7 and two 3.4.3 (one in '/usr/bin' and the other in '/usr/local/bin')
This happened while i was experimenting with PIP. So I'm not able to retrace what I actually did.
My questions are :
- Why building the 3.4.3 didn't upgrade the existing 3.4.0, but instead it made a new installation in '/usr/local/bin' ?
- What do you think actually happened that upgraded the 3.4.0 to a 3.4.3 ?
- Is it 'okay' to have two installations of the same version (3.4.3) of python in my system ?