user2780519
user2780519

Reputation: 103

Cannot load torchvision despite it being installed

I have installed pytorch and torchvision using:

conda install pytorch-cpu -c pytorch
pip install torchvision

when I try to run the following in spyder:

import torch
import torchvision
import torchvision.transforms as transforms

I get:

Traceback (most recent call last):

  File "<ipython-input-2-0bf25e9dac67>", line 2, in <module>
    import torchvision

  File "C:\Users\lkoefoed\AppData\Local\Continuum\anaconda3\lib\site-package\torchvision\__init__.py", line 2, in <module> 
from torchvision import datasets

  File "C:\Users\lkoefoed\AppData\Local\Continuum\anaconda3\lib\site-packages\torchvision\datasets\__init__.py", line 1, in <module> 
from .lsun import LSUN, LSUNClass

  File "C:\Users\lkoefoed\AppData\Local\Continuum\anaconda3\lib\site-packages\torchvision\datasets\lsun.py", line 2, in <module> 
from PIL import Image

  File "C:\Users\lkoefoed\AppData\Local\Continuum\anaconda3\lib\site-packages\PIL\Image.py", line 56, in <module> 
from . import _imaging as core

ImportError: DLL load failed: The specified module could not be found.

Upvotes: 6

Views: 15807

Answers (2)

Lokesh Karthik
Lokesh Karthik

Reputation: 1

conda:

conda install torchvision -c pytorch

This worked perfectly for me

Upvotes: 0

user2780519
user2780519

Reputation: 103

Fixed by running:

conda install pytorch-cpu -c pytorch 
pip install torchvision 

Deleting the PIL and pillow folders in site-packages, then running:

pip install pillow

Upvotes: 4

Related Questions