2

I am running `import mxnet as mx'. It returns No module named 'mxnet'. I am working in google colab.

`

Mariam
  • 59
  • 1
  • 10

1 Answers1

0

On CPU, hit this in the first cell of your Colab:

! pip install --upgrade mxnet

On GPU:

! pip install --upgrade mxnet-cu100

(more info on MXNet installs here)

Olivier Cruchant
  • 3,747
  • 15
  • 18