xf05888 opened a new issue #15598: ImportError: cannot import name '_adamw_update' URL: https://github.com/apache/incubator-mxnet/issues/15598 Hello everyone! I want to install the latest version MXNet on Jetson so I ran these command: `wget https://github.com/apache/incubator-mxnet/releases/download/1.5.0.rc2/apache-mxnet-src-1.5.0.rc2-incubating.tar.gz` `tar zxvf apache-mxnet-src-1.5.0.rc2-incubating.tar.gz` `cd apache-mxnet*/python && pip install -e .` It installed successfully,but when I tried to import mxnet in Python, it said: ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/mxnet/下载/apache-mxnet-src-1.5.0.rc2-incubating/python/mxnet/__init__.py", line 29, in <module> from . import contrib File "/home/mxnet/下载/apache-mxnet-src-1.5.0.rc2-incubating/python/mxnet/contrib/__init__.py", line 27, in <module> from . import autograd File "/home/mxnet/下载/apache-mxnet-src-1.5.0.rc2-incubating/python/mxnet/contrib/autograd.py", line 29, in <module> from ..ndarray import NDArray, zeros_like, _GRAD_REQ_MAP File "/home/mxnet/下载/apache-mxnet-src-1.5.0.rc2-incubating/python/mxnet/ndarray/__init__.py", line 26, in <module> from . import register File "/home/mxnet/下载/apache-mxnet-src-1.5.0.rc2-incubating/python/mxnet/ndarray/register.py", line 177, in <module> from ._internal import _adamw_update, _mp_adamw_update ImportError: cannot import name '_adamw_update' ``` It seems like something wrong,how do I solve this? 🤔 (OS: Ubuntu 18.04 Python version: 3.6.8 MXNet version: 1.5.0.rc2)
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
