I need a certain Python library (namely Blender) which only works for Python3.x
This is going to mean installing numpy
for Python 3. I get
Python 3.2.3 (default, Sep 25 2013, 19:36:10)
[GCC 4.7.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named numpy
Right now it only works for my 2.7
Is it possible to install pip
so that it works for both Python 2.7 and Python 3 ?