本文主要是介绍处理pytorch报错WARNING conda.gateways.disk.delete:unlink_or_rename_to_trash(140),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
想把pytorch的版本回退到1.6.0.所以重新安装pytorch。
在清华镜像源的条件下在conda环境下输入
conda install pytorch==1.6.0 torchvision==0.7.0
但安装过程中报警如下:
WARNING conda.gateways.disk.delete:unlink_or_rename_to_trash(140): Could not remove or rename D:\anaconda\pkgs\pytorch-1.6.0-py3.7_cuda101_cudnn7_0.tar.bz2. Please remove this file manually (you may need to reboot to free file handles)
WARNING conda.gateways.disk.delete:unlink_or_rename_to_trash(140): Could not remove or rename D:\anaconda\pkgs\pytorch-1.6.0-py3.7_cuda101_cudnn7_0\Lib\site-packages\torch\lib\torch_cuda.dll. Please remove this file manually (you may need to reboot to free file handles)
此处参考过该处理办法,没能解决,但我也将权限打开。
后来,索性按照提示,手动将“D:\anaconda\pkgs\pytorch-1.6.0-py3.7_cuda101_cudnn7_0.tar.bz2.”和“D:\anaconda\pkgs\pytorch-1.6.0-py3.7_cuda101_cudnn7_0\Lib\site-packages\torch\lib\torch_cuda.dll.”所指代的文件给删除,不再报错。
最后安装成功,并显示版本号
import torch
print(torch.__version__) #注意是双下划线
这篇关于处理pytorch报错WARNING conda.gateways.disk.delete:unlink_or_rename_to_trash(140)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!