Pytorch出现错误Attribute Error:module ‘torch‘ has no attribute '_six'解决
作者:briskkkk
这篇文章主要给大家介绍了关于Pytorch出现错误Attribute Error:module ‘torch‘ has no attribute '_six'解决的相关资料,文中通过图文介绍的非常详细,需要的朋友可以参考下
1. 问题描述:我是在VScode中使用jupyter拓展,远程连接服务器。
2. torch版本:2.0
3. pytorch版本: 1.9.1
4. 问题原因:torch 2.0版本以后中没有 ‘_six.py’ 文件
5. 如何查看torch中的py文件?
我是用的anaconda,torch中的py文件位置为:
/envs/环境名/lib/python版本号(比如:python3.8)/site-packages/torch
6. 解决办法
(1)我第一开始试着把torch1.9中的’_six.py’文件复制到torch2.0中,发现还是不行(不知道为啥,有大佬能解释一下吗?)
然后我又重新装了torch1.9.1,问题解决了!
步骤如下:
pip uninstall torch
pip install torch==1.9.1
Tips: 如果在步骤5中发现有’_six.py’文件,可以点击重启jupyter kernel即可解决。
总结
到此这篇关于Pytorch出现错误Attribute Error:module ‘torch‘ has no attribute '_six'解决的文章就介绍到这了,更多相关Pytorch错误Attribute Error内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
- python错误:AttributeError: ''module'' object has no attribute ''setdefaultencoding''问题的解决方法
- 解决python多线程报错:AttributeError: Can''t pickle local object问题
- Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
- Python 中 AttributeError: ‘NoneType‘ object has no attribute ‘X‘ 错误问题解决方案
- 解决AttributeError:'NoneTypeobject' has no attribute'Window'的问题(亲测有效)
- Python进程崩溃AttributeError异常问题解决