-
Notifications
You must be signed in to change notification settings - Fork 7k
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
aarch64 linux wheel file does not have image.so #7104
aarch64 linux wheel file does not have image.so #7104
Comments
workaround is to build aarch64 linux torchvision wheel from source
Output should say
Now
|
Could you please provide details on how you installed torchvision in the first place? Or is it that ubuntu comes with torchvision pre-installed (in which case this could be a packaging error from Ubuntu) ?
Glad it worked, note that you can probably simplify your build process by following / adapting the steps described here https://github.com/pytorch/vision/blob/main/CONTRIBUTING.md#development-installation |
|
Thanks for the details @apivovarov . I can confirm that |
Looks like it was fixed in 1.15.2! Thank you! >>> import torchvision
>>> torchvision.__version__
'0.15.2' uname -moip
aarch64 aarch64 aarch64 GNU/Linux
$ cd /usr/local/lib/python3.8/dist-packages/torchvision
$ ls -la *.so
-rwxr-xr-x 1 root staff 862688 May 22 21:19 _C.so
-rwxr-xr-x 1 root staff 783888 May 22 21:19 image.so |
🐛 Describe the bug
Start ARM64 Ubuntu 20.04 instance
Install torch and torchvision using pip as recommended at https://pytorch.org/
Import torchvision
Error:
I checked dist-packages/torchvision folder. Yes,
image.so
file is missing.I checked several other wheel files.
Other wheel files have
image.so
libVersions
The text was updated successfully, but these errors were encountered: