问题
使用pycharm python console时候
from PIL import Image出现ImportError: DLL load failed: 找不到指定的模块的问题
发现是因为PIL的问题
解决方法:
删掉PIL重新安装
打开anaconda,python console用的是pytorch,
conda activate pytorch 进入pytorch
pip uninstall Pillow 卸载掉
pip install Pillow 安装--------出现问题,Looking in indexes: https://pypi.doubanio.com/simple卡住--------解决方法,用清华源镜像pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pillow


问题解决~
9万+

被折叠的 条评论
为什么被折叠?



