Solution :
This issue is related to your recently downloaded new numpy version (1.15.0)
You can just downgrade your numpy and your problem will be fixed using below commands:
sudo pip uninstall numpy
sudo pip install numpy==1.14.5
Finally the numpy 1.15.1 version is released so a warning issues are fixed.
sudo pip install numpy==1.15.1
This is working for me.
OR
Above issue was gone after I just installed the libraries through apt install as shown below:
For your Python3,
pip3 uninstall -y numpy scipy pandas scikit-learn
sudo apt update
sudo apt install python3-numpy python3-scipy python3-pandas python3-sklearn
For your Python2,
pip uninstall -y numpy scipy pandas scikit-learn
sudo apt update
sudo apt install python-numpy python-scipy python-pandas python-sklearn
Hope that helps you in resolving your issues.
OR
If you are in the anaconda environment please use as shown below:
conda update --all
Hope the above mentioned solutions help you in resolving your issues.