MXNet Python Package ==================== This directory and nested files contain MXNet Python package and language binding. ## Installation To install MXNet Python package, visit MXNet [Install Instruction](https://mxnet.apache.org/get_started) ## Running the unit tests For running unit tests, you will need the [pytest PyPi package](https://pypi.python.org/pypi/pytest). To install: ```bash pip install --upgrade pytest ``` Once ```pytest``` is installed, run the following from MXNet root directory (please make sure the installation path of ```pytest``` is included in your ```$PATH``` environment variable): ``` pytest tests/python/unittest pytest tests/python/train ```