52matlab技术网站,matlab教程,matlab安装教程,matlab下载

标题: Mac环境运行python问题解决办法 [打印本页]

作者: matlab的旋律    时间: 2022-11-19 23:31
标题: Mac环境运行python问题解决办法
在macos环境中时用python经常遇到
  1. OMP: Error #15: Initializing libomp.dylib, but found libomp.dylib already initialized.
  2. 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/
复制代码
解决办法在脚本文件中的最前加上
  1. import os
  2. os.environ["KMP_DUPLICATE_LIB_OK"] = "True"
复制代码
解决!





欢迎光临 52matlab技术网站,matlab教程,matlab安装教程,matlab下载 (http://www.52matlab.com/) Powered by Discuz! X3.2