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

前端 未结 4 1756
刺人心
刺人心 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:18

    What solved this for me was installing seaborn via conda:

    conda install seaborn
    

    And then restarting the kernel

    0 讨论(0)
  • 2021-01-06 01:18

    I was having this issue until I uninstalled and reinstalled scipy with the pip command. Just got to your command line and type pip uninstall scipy and pip install scipy.

    Hopefully that works for you as well. I also uninstalled/installed seaborn before this although I'm not sure if that was necessary.

    Using conda rather than pip may also work.

    0 讨论(0)
  • 2021-01-06 01:26

    I had the same problem.

    I uninstalled seaborn with pip uninstall seaborn and then I installed it with pip install seaborn

    Then it didn't work so I restarted the KERNEL and it works.

    0 讨论(0)
  • 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"
    
    0 讨论(0)
提交回复
热议问题