AttributeError: module 'numpy' has no attribute '__version__'

后端 未结 5 1117
眼角桃花
眼角桃花 2020-12-10 12:21

I updated my computer today, and am getting the following error message when I attempt to import pandas:

import pandas as pd        
AttributeError: module \         


        
5条回答
  •  有刺的猬
    2020-12-10 12:51

    Have you tried this:

    pip uninstall -y numpy
    pip uninstall -y setuptools
    pip install setuptools
    pip install numpy
    

提交回复
热议问题