It is good to know the version of numpy
you run, but strictly speaking if you just need to have specific version on your system you can write like this:
pip install numpy==1.14.3
and this will install the version you need and uninstall other versions of numpy
.