Skip to content

Commit 87fe53e

Browse files
author
dbickson
committed
adding conda error on mac
1 parent 8fde2cc commit 87fe53e

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

INSTALL.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,16 @@ ERROR: fastdup-0.39-cp38-cp38-manylinux_2_31_x86_64.whl is not a supported wheel
104104
- Make sure you install using `python3.8 -m pip install..` and not just `pip install...`.
105105
- If that does not work, please open an issue with the otuput of `python3.8 -m pip debug --verbose` or join our slack channel.
106106

107-
ERROR: `libGL.so.1: cannot open shared object file: No such file or directory`
107+
ERROR on Ubuntu: `libGL.so.1: cannot open shared object file: No such file or directory`
108108
- Need to install depedency: `sudo apt -y nstall libgl1-mesa-glx`
109109

110-
110+
Error on Mac+conda: `OMP: Error #15: Initializing libomp.dylib, but found libomp.dylib already initialized.
111+
OMP: Hint This means that multiple copies of the OpenMP runtime have been linked into the program. That is dangerous, since it can degrade performance or cause incorrect results. The best thing to do is to ensure that only a single OpenMP runtime is linked into the process, e.g. by avoiding static linking of the OpenMP runtime in any library. As an unsafe, unsupported, undocumented workaround you can set the environment variable KMP_DUPLICATE_LIB_OK=TRUE to allow the program to continue to execute, but that may cause crashes or silently produce incorrect results. For more information, please see http://openmp.llvm.org/
112+
zsh: abort python3`
113+
- Solution from [StackOverflow](https://stackoverflow.com/questions/53014306/error-15-initializing-libiomp5-dylib-but-found-libiomp5-dylib-already-initial)
114+
- You should install all packages without MKL support:
115+
```
116+
conda install nomkl
117+
conda install numpy scipy pandas tensorflow
118+
conda remove mkl mkl-service # may fail, don't worry
119+
```

0 commit comments

Comments
 (0)