I finally managed to install numpy, but it seems to only work in python2.6 . I don’t know how to install it in the 2.7 folder (been trying for hours, but I’m just a beginner developer in my first months). Anyway, if I use Python 2.7 and append the absolute path to sys.path, could there be problems?
Any suggestions?
Thank you.
It could partially work but this is a bad idea. Just don’t do it. Even if it seems to work, it may not. And if it really does, then it will fail randomly in the future.
These are the potential problems that come into my mind:
There could be more. You may actually try but be prepared that you may waste a lot of time trying to find out why something does not work as expected later.
And unless I’m missing something, I think installing numpy for Python2.7 involves mostly running the setup using Python 2.7; like:
Depending on your particular install/system, it may be preferable to use the package manager, binary bundle or a tool like
pipinstead. If you’d like more details on how to enforce Python2.7 with those, you’d have to tell us which one is of your choice.