- 程序突然运行出现如下错误
**出现:**vscode运行遇见如下错误
PS D:\Image_recognition> D:/softer/Aanaconda/Scripts/activate
PS D:\Image_recognition> conda activate torch
conda : 无法将“conda”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。
所在位置 行:1 字符: 1
+ conda activate torch
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (conda:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS D:\Image_recognition> D:/softer/Aanaconda/Scripts/activate
PS D:\Image_recognition>
vscode运行出现如下错误
Windows PowerShell
版权所有(C) Microsoft Corporation。保留所有权利。
安装最新的 PowerShell,了解新功能和改进!https://aka.ms/PSWindows
终端原因导致
只需要将vscode终端改为cmd即可
设置如下:
默认终端选择为cmd
只需要改为cmd为默认终端
很多其他原因分析,要powershell更新什么的,没弄懂,配置完后出现各种错误。其实只需要改一下默认终端就OK了
opencv报错:
cv2.error: OpenCV(4.9.0) D:\a\opencv-python\opencv-python\opencv\modules\highgui\src\window.cpp:1255: error: (-2:Unspecified error) The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support. If you are on Ubuntu or Debian, install libgtk2.0-dev and pkg-config, then re-run cmake or configure script in function 'cvNamed
解决办法:
pip install opencv-contrib-python
MMCVA安装失败,参考链接链接描述
官网mmcv
File "D:\softer\Aanaconda\envs\env-img-deblurring\lib\urllib\request.py", line 1349, in do_open
raise URLError(err)
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1129)>
这个错误是由于SSL证书验证失败导致的。你可以尝试关闭证书验证,但这样做可能会导致安全风险。如果你仍然想要关闭证书验证,可以在代码中添加以下内容:
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
将这段代码添加到你的脚本开头,然后再尝试运行。这将忽略SSL证书验证,但请注意,这样做可能会导致安全风险。