I used this command “pip install mxnet-cu102” from the Apache mxnet website. I selected GPU. The installation was successful; however when I verified my installation by “import mxnet as mx” I got and error message
“OSError: libcudart.so.10.2: cannot open shared object file: No such file or directory”
Would someone please help?
In the mxnet notes: mxnet-cu101 means the package is built with CUDA/cuDNN and the CUDA version is 10.1. Hence for using mxnet-cu102 you first need to install latest cuda toolkit version 10.2.8 (build hfd86e86_1) using
conda install cudatoolkit=10.2
assuming you are using conda. Then reinstall mxnet with cuda using the pip command you used.