-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation failed on Nvidia Jetson #243
Comments
@kochsebastian sorry to bother you Sebastian. Were you able to solve this issue? Or do you alternatively use the ONNX export/import? |
"The problem is that "setup.py" specifies "torch" in the "install_requires" section install_requires=[ This causes the "pip3 install --editable ./" command to download "torch-0.1.2.post2.tar.gz" from the pythonhosted packages. This package does not include cuda: The solution for me was to delete the line "torch" in "setup.py" In addition you need to follow the descriptions at https://elinux.org/Jetson_Zoo to install PyTorch |
I want to use your EfficentNet implementation on a Jetson Xavier.
But when trying to install it via pip or from source I get the following error:
I tried to update the setuptools package, no change.
It seems to be a PyTorch (Version 1.6) issue.
PyTorch is not installed from the original source on the Jetson devices, but you have to follow these instructions:
https://elinux.org/Jetson_Zoo
Any help would be appreciated.
The text was updated successfully, but these errors were encountered: