I am a newbie to Colabs and want to work through this tutorial on Linear Algebra
There is a snippet
!pip install -U mxnet-cu101==1.7.0
and another
from mxnet import np, npx
npx.set_np()
x = np.array(3.0)
y = np.array(2.0)
x + y, x * y, x / y, x**y
Or in text
This notebook is being loaded from GitHub It may request access to your data stored with Google or read data and credentials. Please review the source code before executing this notebook
How do I determine whether it is safe to proceed?
Do I look up np and npx in the source code for mxnet. Where do I even find mxnet?
It seems rather daunting when I am just trying to get started.
[Update]
I found information about installing via pip here and mxnet-cu101 here
[Update]
I ran the install and the snippet as follows.