ModuleNotFoundError: No module named ‘pytorch_pretrained_bert’

问题描述

pip install pytorch-pretrained-bert==0.6.1

安装pytorch-pretrained-bert包的过程中出现错误:
ModuleNotFoundError: No module named ‘pytorch_pretrained_bert’_第1张图片


原因分析:

版本不匹配,找不到适应版本;或是镜像错误


解决方案:

换其他镜像源

pip install pytorch_pretrained_bert==0.6.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

ModuleNotFoundError: No module named ‘pytorch_pretrained_bert’_第2张图片
参考: 问题总结:ModuleNotFoundError
ERROR: Could not find a version that satisfies the requirement

你可能感兴趣的:(pytorch,bert,python)