There are compiled binaries(libmxnet.dll and mxnet_xx.dll)and their DLL dependencies on Windows.
- Looking on the filename which have edition of mxnet, cuda, and python.
- To extract a zip file to mxnet/python/mxnet/ .
- Running
cd .\mxnet\
,python -m pip install .\python\
. - The test code .
import mxnet.numpy as nd
import mxnet as mx
a = nd.array([1, 2, 3], ctx=mx.gpu())
print(a)