astonzhang commented on issue #20068: URL: https://github.com/apache/incubator-mxnet/issues/20068#issuecomment-834900161
For anyone who encounters the same error when installing mxnet-cu101==1.8.0 or 1.8.0post0 and run `import mxnet`: 1. Starting from version 1.8.0, CUDNN and NCCL should be installed as well. https://mxnet.apache.org/versions/master/get_started?platform=linux&language=python&processor=gpu&environ=pip& 2. So you may install CUDNN and NCCL (NCCL 2): ``` conda install -c conda-forge cudnn conda install -c conda-forge nccl # It gives you nccl 2, nccl 1 won't work ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
