Runing MXNET on cloud

please how do install the virtual environment and mxnet on a cloud environment like azure and google colab

Hi @Maduflavins
The install instructions are here:

For a typical GPU instance, you only need to know your CUDA version.
This can be done by

ls -lah /usr/local/cuda
lrwxrwxrwx 1 root root 19 Dec 19 16:58 /usr/local/cuda -> /usr/local/cuda-9.2

In my case you can see that /usr/local/cuda is aliased to cuda-9.2 which means I use

pip install mxnet-cu92

When installing MXNet.

Make sure that MXNet version matches the CUDA, by running on a non-GPU instance first (Colab command):

!nvcc --version

For detailed working test in Colab see: https://discuss.mxnet.apache.org/t/not-implemented-for-use-with-gpus/1093/5