You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered environment bug that is OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.
Therefore, I try to use some code to fix it please reference to below:
import os
os.environ["KMP_DUPLICATE_LIB_OK"] = "TRUE" that cna fix it
The text was updated successfully, but these errors were encountered:
I don't know if the problem has been solved yet. I'm gonna write it anyway.
I run into a similar problem while using jupyter notebook. so I check libiomp5md.dll in my anaconda file. The result was,
After that, I try to move out (delete) each file to see if it works. It seems like when I delete the one its path was C:\Users\phudi\anaconda3\Library\bin. the code works fine.
I'm neither an expert nor experienced. So I don't know if this approach has any side effects. But it does work for me.
I encountered environment bug that is OMP: Error #15: Initializing libiomp5md.dll, but found libiomp5md.dll already initialized.
Therefore, I try to use some code to fix it please reference to below:
The text was updated successfully, but these errors were encountered: