Issue
when i am running import seaborn as sns it throws me an error
ImportError: DLL load failed while importing _cobyla: %1 is not a valid Win32 application.
kindly help me with the problem
Solution
Thanks to @mwaskom for the comment. You should fix SciPy installation:
pip install --upgrade --no-deps --force-reinstall scipy
The command either installs the package if not existing, or re-installs and upgrade if it is not. The dependencies are not re-installed using the --no-deps
flag.
Answered By - ClaudiaR
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.