I'm now currently using Python on ubuntu 15.10
But in my OS, I have many different python version installed:
- Python (2.7.9)
- Python3 (3.4.3)
- Python3.5
- PyPy
So, I got mess about the version of their package environment, for example, if I run:
pip3 install django
In fact I cannot import django inside python3.5.
Is there any efficiently way to call the relating version of pip?
PS: Don't suggest that I use virtualenv, I know about it and am seeking another solution.
pip3 -Vand see where it points to. You should also have apip3.5forPy3.5. - Dimitris Fasarakis Hilliard