美文网首页
安装torchtext

安装torchtext

作者: 逍遥_yjz | 来源:发表于2021-08-19 20:19 被阅读0次

    在阅读pytroch版本的《动手学深度学习》第七章时,源码需要安装torchtext。直接使用pip安装

    pip install torchtext
    

    会更新pytorch,这时会卸载旧的pytorch,安装的新版本pytorch可能会不兼容。
    最后我在 https://github.com/pytorch/text/找到pytorch与torchtext版本对应关系:

    在这里插入图片描述

    我的pytorch是1.5版本,因此安装0.6版本的torchtext,命令如下:

    pip install torchtext==0.6
    

    从国内的源下载很快。并且不用更新pytorch版本,推荐这种方式安装torchtext。

    相关文章

      网友评论

          本文标题:安装torchtext

          本文链接:https://www.haomeiwen.com/subject/qriabltx.html