python/mxboard/summary.py [33:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
try:
    import mxnet
    from distutils.version import LooseVersion
    if LooseVersion(mxnet.__version__) < LooseVersion('1.2.0'):
        logging.warning('The currently installed MXNet version %s is less than 1.2.0.'
                        ' Some functionality of MXBoard may not work.', mxnet.__version__)
except ImportError:
    raise ImportError('MXBoard requires MXNet with version >= 1.2.0.'
                      ' Please follow the instruction here to install MXNet first.'
                      ' http://mxnet.incubator.apache.org/install/index.html')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



python/mxboard/utils.py [30:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
try:
    import mxnet
    from distutils.version import LooseVersion
    if LooseVersion(mxnet.__version__) < LooseVersion('1.2.0'):
        logging.warning('The currently installed MXNet version %s is less than 1.2.0.'
                        ' Some functionality of MXBoard may not work.', mxnet.__version__)
except ImportError:
    raise ImportError('MXBoard requires MXNet with version >= 1.2.0.'
                      ' Please follow the instruction here to install MXNet first.'
                      ' http://mxnet.incubator.apache.org/install/index.html')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



