编程语言
首页 > 编程语言> > python3.8 pytorch1.7安装torchtext

python3.8 pytorch1.7安装torchtext

作者:互联网

python3.8 pytorch1.7安装torchtext

刚开始使用pip安装,一会就装好了,但是它把我好不容易装好的torch升级到cpu-1.8了…
于是又重新装torch-gpu1.7.
这次去源码那link 查了一下:
在这里插入图片描述
可见我应该装0.8版本的。

(base) C:\Users\Admin>pip install torchtext==0.8
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
ERROR: Could not find a version that satisfies the requirement torchtext==0.8 (from versions: 0.1.1, 0.2.0, 0.2.1, 0.2.3, 0.3.1, 0.4.0, 0.5.0, 0.6.0, 0.9.0, 0.9.1)
ERROR: No matching distribution found for torchtext==0.8

好巧不巧没有0.8版本的,只能装个0.6版本的凑合用着。

(base) C:\Users\Admin>pip install torchtext==0.6

标签:0.9,0.8,0.2,0.6,pytorch1.7,torchtext,pip,python3.8
来源: https://blog.csdn.net/abc1831939662/article/details/115288746