import pandas运行时报错
raise RuntimeError(msg.format(__file__)) from None
RuntimeError: The current Numpy installation () fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86
这是因为Numpy最新版本(1.19.4)运行有问题
解决办法
卸载当前版本Numpy,再安装一个老版本
pip uninstall numpy
pip install numpy==1.19.3