I have downloaded Python 3.6 Portable.
I need to use numpy.
I have downloaded it using git: git clone https://github.com/numpy/numpy.git numpy . Copied the directory "numpy" to the Python directory.
Now, when I use "import numpy", I get the following error:
ImportError: Error importing numpy: you should not try to import numpy from its source directory; please exit the numpy source tree, and relaunch your python interpreter from there.
What should I do?
And no, it's not a duplicate of Explain why numpy should not be imported from source directory, since copying the numpy to the directory "site-packages" in the Python directory makes it so, that the interpreter simply does not see the numpy module.
The suggestion that this is the duplicate of a question where author asks to EXPLAIN something, is not accurate. Since I didn't ask for explanation, I asked, how can I make this WORK. And the "possible duplicate" question only tells about he way is DOES NOT WORK.
By the way, I have already found the way to get what I want without numpy. But numpy is the solution, what was advised in other stackovervlow answer, and this becomes time consuming for those, who uses portable Python, since there seems to be no obvious solution for them. And they are not told that when advised to use numpy.
The answers