Question:
I created a new conda environment in DevCloud and installed tensorflow from intel channel as below:
conda install -c intel tensorflow.
After the installation, when I tried to import tensorflow, it threw "`GLIBC_2.23' not found " error.
Answer:
Please follow the below steps for resolving the issue -
mkdir ~/lib cd ~/lib ln -s /glob/supplementary-software/versions/glibc/glibc_2_28/lib/libm.so.6
Then export the LD_LIBRARY_PATH for it by doing the following:
export LD_LIBRARY_PATH=~/lib:$LD_LIBRARY_PATH
Link Copied
For more complete information about compiler optimizations, see our Optimization Notice.