From d2l import mxnet as d2l fails

Hello, even though I successfully installed d2l. I got the following message after typing

from d2l import mxnet as d2l

I got the following error message

--------------------------------------------------------------------------- OSError Traceback (most recent call last) in ----> 1 from d2l import mxnet as d2l ~\AppData\Local\Continuum\anaconda3\envs\tamulab\lib\site-packages\d2l\mxnet.py in 24 25 # Defined in file: ./chapter_preface/index.md —> 26 from mxnet import autograd , context , gluon , image , init , np , npx 27 from mxnet . gluon import nn , rnn 28 ~\AppData\Local\Continuum\anaconda3\envs\tamulab\lib\site-packages\mxnet_init_.py in 21 “”“MXNet: a concise, fast and flexible framework for deep learning.”“” 22 —> 23 from . context import Context , current_context , cpu , gpu , cpu_pinned 24 from . import engine , error 25 from . base import MXNetError ~\AppData\Local\Continuum\anaconda3\envs\tamulab\lib\site-packages\mxnet\context.py in 21 import warnings 22 import ctypes —> 23 from . base import classproperty , with_metaclass , _MXClassPropertyMetaClass 24 from . base import _LIB 25 from . base import check_call ~\AppData\Local\Continuum\anaconda3\envs\tamulab\lib\site-packages\mxnet\base.py in 349 version = libinfo . version 350 # library instance of mxnet → 351 _LIB = _load_lib ( ) 352 353 # type definitions ~\AppData\Local\Continuum\anaconda3\envs\tamulab\lib\site-packages\mxnet\base.py in load_lib () 340 “”“Load library by searching possible path.”“” 341 lib_path = libinfo . find_lib_path ( ) → 342 lib = ctypes . CDLL ( lib_path [ 0 ] , ctypes . RTLD_LOCAL ) 343 # DMatrix functions 344 lib . MXGetLastError . restype = ctypes . c_char_p **~\AppData\Local\Continuum\anaconda3\envs\tamulab\lib\ctypes_init.py** in init (self, name, mode, handle, use_errno, use_last_error) 346 347 if handle is None : → 348 self . _handle = _dlopen ( self . _name , mode ) 349 else : 350 self . _handle = handle OSError : [WinError 126] The specified module could not be found


!pip install -U mxnet-cu101==1.7.0 --default-timeout=1000 # https://github.com/pypa/pypi-support/issues/175