C/C++教程

【错误日志】【vscode】import numpy 失败:DLL load failed

本文主要是介绍【错误日志】【vscode】import numpy 失败:DLL load failed,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

错误原因:shell 打开失败,导致 conda activate 失败,没有环境,自然没有 numpy

解决:
在 settings.json 中加入:

	"terminal.integrated.profiles.windows":{
        "PowerShell": {
            "source": "PowerShell",
            "icon": "terminal-powershell"
        },
        "Command Prompt": {
            "path": [
                "${env:windir}\\Sysnative\\cmd.exe",
                "${env:windir}\\System32\\cmd.exe"
            ],
            "args": [],
            "icon": "terminal-cmd"
        },
        "Git Bash": {
            "source": "Git Bash"
        }
    },
    "terminal.integrated.defaultProfile.windows":"Command Prompt" 
这篇关于【错误日志】【vscode】import numpy 失败:DLL load failed的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!