Open CheungBH opened 1 year ago
I faced the same issue and i was able to debug the reason but still not sure about the solution. as you can see in your log .sub process gets killed. the reason is that the memory issue.i analyzed this in a large server where i could install correctly. it consume 21 GB during the installation process in your case jetson does not have that much of memory. one solution could be to have swap memory. if you try this and work please let me know
Hello. Thanks for your great work. I am going to deploy your work to jetson nano & nx. Are there any references or documents? I am trying pip install your libraries using pip install -U MinkowskiEngine --install-option="--blas=openblas" -v --no-deps in jetson nx, but an error occurs:
nvidia@nvidia-desktop:~/Desktop/EventCameraNet$ pip install -U MinkowskiEngine --install-option="--blas=openblas" -v --no-deps /home/nvidia/.local/lib/python3.6/site-packages/pip/_internal/commands/install.py:245: UserWarning: Disabling all use of wheels due to the use of --build-option / --global-option / --install-option. cmdoptions.check_install_build_global(options) Using pip 21.3.1 from /home/nvidia/.local/lib/python3.6/site-packages/pip (python 3.6) Defaulting to user installation because normal site-packages is not writeable Collecting MinkowskiEngine Downloading MinkowskiEngine-0.5.4.tar.gz (246 kB) |████████████████████████████████| 246 kB 1.9 MB/s
Running command python setup.py egg_info WARNING: Skipping MinkowskiEngine as it is not installed.
| CUDA compilation set |
Using BLAS=openblas Using the default compiler running egg_info creating /tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info writing /tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/PKG-INFO writing dependency_links to /tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/dependency_links.txt writing requirements to /tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/requires.txt writing top-level names to /tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/top_level.txt writing manifest file '/tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/SOURCES.txt' reading manifest file '/tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file '/tmp/pip-pip-egg-info-aobry1lj/MinkowskiEngine.egg-info/SOURCES.txt' /usr/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'long_description_contenttype' warnings.warn(msg) Preparing metadata (setup.py) ... done Skipping wheel build for MinkowskiEngine, due to binaries being disabled for it. Installing collected packages: MinkowskiEngine Running command /usr/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-juwfehr/minkowskienginedece62cff2564462817dcbf668c7729f/setup.py'"'"'; file='"'"'/tmp/pip-install-juwfehr/minkowskiengine_dece62cff2564462817dcbf668c7729f/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-xhp5bhlm/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /home/nvidia/.local/include/python3.6m/MinkowskiEngine --blas=openblas WARNING: Skipping MinkowskiEngine as it is not installed.
ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-juwfehr_/minkowskienginedece62cff2564462817dcbf668c7729f/setup.py'"'"'; file='"'"'/tmp/pip-install-juwfehr/minkowskiengine_dece62cff2564462817dcbf668c7729f/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-xhp5bhlm/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /home/nvidia/.local/include/python3.6m/MinkowskiEngine --blas=openblas Check the logs for full command output.
Do you have any suggestions?