I'm now currently using Python on Ubuntu 15.10.
But in my OS, I have many different python versions installed:
- Python (2.7.9)
- Python3 (3.4.3)
- Python3.5
- PyPy
So, it got messy with the versions of the packages in different environments. For example, if I run:
pip3 install django
But in fact, I cannot import django inside python3.5
.
Is there any efficient way to call the correct version of pip
?
Note:
Don't suggest that I use virtualenv, I know about it and am seeking another solution.