I tried to upgrade pandas from 19.2 to 20.2
I did pip -install --upgrade pandas
and it ran successfully. However, now when I try to import pandas I get:
"Missing required dependencies {0}".format(missing_dependencies))
ImportError: Missing required dependencies ['numpy']
I uninstall and re-install numpy with pip uninstall numpy and pip install numpy. But it seems like numpy is using a cashed version. I did install numpy MKL a while back....:
C:\Windows\System32>pip install numpy
Collecting numpy
Using cached numpy-1.13.0-cp36-none-win32.whl
Installing collected packages: numpy
Successfully installed numpy-1.13.0
How do i install the "normal" version of numpy? As I believe this cached version is causing the issues