ImportError: DLL load failed while importing aggregations: The specified module could not be found

前端 未结 4 635
夕颜
夕颜 2021-01-11 16:18

I am new to Python and currently having trouble when importing some libraries.

I am using Python 3.8.

I have installed Pandas in the CMD usi

4条回答
  •  梦谈多话
    2021-01-11 16:34

    simply uninstall pandas and reinstall pandas to 1.0.1

    eg:
    pip uninstall pandas
    pip install pandas==1.0.1

提交回复
热议问题