Installation failing

Hi, I’m trying to install pytorch using conda. I’m on linux with cuda 8.0, so I ran the following command :

conda install pytorch torchvision -c pytorch

When I try to import pytorch, I get the following error :
ImportError: libmkl_gf_lp64.so: cannot open shared object file: No such file or directory

Relevant notes : previous conda installations have always worked, however I’ve never been able to install from source on this machine.

Any thoughts?

Thanks!

It is currently being discussed in this issue. For some reason an older binary was being installed in my case, upgrading anaconda helped:

conda upgrade conda
conda upgrade anaconda
1 Like

Your fix worked, thanks!