Runtimeerror: Cannot Find The Mxnet Library
I want to create executable for my code where i'm using mxnet with pyinstaller. I got this error File 'mxnet/libinfo.py', line 74, in find_lib_path RuntimeError: Cannot find the MX
MXNet needs external binaries to be fed when you freeze it. You can use add-data
flag to add libmxnet files to your executable:
pyinstaller -F --add-data="<python_path>/lib/python3.7/site-packages/mxnet/*.so*:./mxnet" script.py
You may like these posts
Post a Comment for "Runtimeerror: Cannot Find The Mxnet Library"