のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

CoreLLDB requires Python 3.3 or later (64bit), but looks like it is not installed on this machine

anacondaのPythonだと、うまく、動かないみたいです。 f:id:none53:20191105232946p:plain

情報の参照元 waregawa-log.hatenablog.com

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'guessing_game'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=guessing_game",
                    "--package=guessing_game"
                ],
                "filter": {
                    "name": "guessing_game",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'guessing_game'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=guessing_game",
                    "--package=guessing_game"
                ],
                "filter": {
                    "name": "guessing_game",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}