Seaborn ImportError: DLL load failed: The specified module could not be found

前端 未结 4 1778
刺人心
刺人心 2021-01-06 00:32

I am getting the \"ImportError: DLL load failed: The specified module could not be found.\" when importing the module seaborn.

I tried uninstalling

4条回答
  •  长发绾君心
    2021-01-06 01:27

    The problem is because you are using windows. Scipy has problems with windows, if you check the sklearn site they say if you were unsuccessful for installing their packages by pip or conda you can install them with unofficial windows binary packages

    so what you need to do is this, find your required package in This Link and download it

    uninstall your previous installed packages :

    pip uninstall seaborn
    

    install all you need from this link, i suggest you to install numpy , pandas, matplotlib, seaborn , ... from this link

    after you downloaded the required package, open your cmd, go to the folder that contains the .whl file

    you can install them by the following command :

    pip install "seaborn‑0.8.1‑py2.py3‑none‑any.whl"
    

提交回复
热议问题