当前位置:   article > 正文

解决报错 Cannot unpack file C:\Users\yantz\AppData\Local\Temp\pip-unpack-q5r6zbda\simple.html (downloa_error: cannot unpack file c

error: cannot unpack file c

一、ERROR: Cannot unpack file C:\Users\yantz\AppData\Local\Temp\pip-unpack-q5r6zbda\simple.html (downloaded from C:\Users\yantz\AppData\Local\Temp\pip-req-build-coat_zab, content-type: text/html); cannot detect archive format
ERROR: Cannot determine archive format of C:\Users\yantz\AppData\Local\Temp\pip-req-build-coat_zab

场景

打开pytorch官网,用官网的命令,pip安装第三方库pytorch的时候,

 pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 i https://pypi.mirrors.ustc.edu.cn/simple/

报错了,

原因

发现是我在pip install的时候,参数i少些了一个“-”。

解决方法

(1)重新设置临时的Pip源,进行安装,

 pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn

(2)安装完成之后,测试一下。

  1. import math
  2. import torch
  3. import numpy as np
  4. import torch.nn as nn
  5. import torch.optim as optim
  6. import torch.utils.data as Data
  7. torch.cuda.is_available()

但是下载下来并不是gpu版本的torch,还是cpu版本的。

(3)重新找了一个命令,我猜测没成功的原因是没加这种“+cu118”后缀。

重新用conda创建了一个虚拟环境,再试一下。

conda create -n dl39 python=3.9
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118

这次就可以了,

用命令conda list打印看一下,

OK,成功了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/625594
推荐阅读
相关标签
  

闽ICP备14008679号