module 'torch' has no attribute 'jit'
时间: 2023-09-26 15:06:18 浏览: 240
出现"module 'torch' has no attribute 'jit'"的错误通常是由于torch版本不兼容导致的。在引用中提到,您的torch版本为1.2.0 cu92,而torchvision版本为0.6.1 cu92。根据您提供的信息,torchvision0.6.1对应的torch版本应为1.4.0。因此,您需要升级torch版本以解决该错误。
解决方法如下:
1. 首先,确保您已经安装了pip工具,并且可以使用它来安装Python包。
2. 执行以下命令来升级torch版本:pip install torch==1.4.0 -f https://download.pytorch.org/whl/torch_stable.html
3. 安装完成后,再次导入torchvision并检查是否还出现"module 'torch' has no attribute 'jit'"的错误。
这样应该能够解决该错误。如果问题仍然存在,请确保torch和torchvision的版本兼容,并且在导入之前确保正确安装了所有依赖库。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [导入torchvision出现:AttributeError: module ‘torch.jit‘ has no attribute ‘unused‘错误](https://blog.csdn.net/weixin_41010198/article/details/107156229)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文