Hm, just tried to run the upgrade command
sudo apt-get update && sudo apt-get upgrade && sudo apt-get autoremove
and after checking, it seems that PyTorch didn’t get updated.
>>> import torch
>>> torch.cuda.is_available()
True
>>> torch.__version__
'0.4.1'
>>> torch.__file__
'/usr/lib/python3/dist-packages/torch/__init__.py'
>>>
That’s weird. When I previously updated via
sudo apt-get update && sudo apt-get upgrade
from PyTorch 0.4.1 to 0.4.1, I didn’t have this issue. Any tips for resolving this? Should I maybe try to manually uninstall/remove pytorch and then try the
sudo apt-get update && sudo apt-get upgrade && sudo apt-get autoremove
or could that break things?