Intel Mkl Fatal Error: While Trying To Import Gensim Package
Solution 1:
Here is my theory on your question:
Is there any dependency between gensim, tensoflow, seaborn and such packages? When you try to install these packages one by one using conda, you might have already seen conda prompting that some of the dependencies will be DOWNGRADED/UPDATED/INSTALLED. Hence there is dependency between the dependencies of these packages.
Why import error is thrown only on certain cases? Looks like a dependency issue. When you try to import gensim, it tries to load certain lib files, which its not able to find. However, when tensorflow or seaborn is imported the mentioned lib files might have already loaded, hence importing gensim did not show an error.
Why installing few packages and uninstalling few, help to solve the problem? This might help to have the correct dependencies for the packages to work properly.
Having said that, I tried to recreate the error that you got, however gensim is importing fine for me. If you could give the result of "conda list", will try to recreate the problem and would be able to give a better insight.
Post a Comment for "Intel Mkl Fatal Error: While Trying To Import Gensim Package"