---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-34-edd286ee72a3> in <module>()
2 from mxnet import gluon, nd, image
3 from mxnet.gluon.data.vision import transforms
----> 4 from gluoncv import utils
5 from gluoncv.model_zoo import get_model
ModuleNotFoundError: No module named 'gluoncv'
---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.
To view examples of installing some common dependencies, click the
"Open Examples" button below.
解决办法:
pip install gluoncv --upgrade
# if you are eager to try new features, try nightly build instead
pip install gluoncv --pre --upgrade