Since yesterday I\'ve had this error when I try to import packages on anaconda :
ImportError: Missing required dependencies [\'numpy\']
I have t
pandas is built on top of numpy so you need to have numpy to use the data manipulation feature, so install numpy first.
pip install numpy