First of all I know this subject is duplicate, but if I understood the problem, I wouldn't come here to ask my question.
I read
Explain why numpy should not be imported from source directory
and probably 2^6 other sites/questions/solution (pip etc..) with similar issues, but I still don't understand. I'm a beginner, I have no problem when I update library of python on ubuntu, but on windows, I've lost my nerves.
So I will explain the way I update my library :
I go on https://github.com/numpy/numpy/releases
I take the v.1.11.0 (the zip)
I get the file numpy-1.11.0.zip in downloads
I delete the file 'numpy' in C:\Python27\Lib\site-packages
I put my new file numpy-1.11.0.zip in site-packages
I unzip that file.
I click on all of the .py of that upzip file
When I try to compile my code (which work on previous version of numpy), I get an 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 intepreter from there.
Where did I fail to update my numpy library? Could someone explain to me in a simple way, because I'm really a noob.