I tried to run tensorflow_gpu
on a server with no internet connection.
The script that runs tensorflow_gpu
failed with this error:
Intel MKL FATAL ERROR: Cannot load libmkl_avx2.so or libmkl_def.so.
I found a solution to this problem in this post, I have to do the following:
conda install nomkl numpy scipy scikit-learn numexpr
conda remove mkl mkl-service
Since the server has no internet connection, I have completely no idea of how I can install those packages.
What packages do I need to upload to the server in order to mimic conda install
?