mysql / mysql-shell-plugins

Plugins for the MySQL Shell
Other
73 stars 14 forks source link

Cannot find name 'mrs'. #55

Open norpactech opened 4 months ago

norpactech commented 4 months ago

HI,

Newbie alert! I did what was asked by adding the "extra paths" to my settings.json file (please see below). I also tried installing with git in my native Windows machine with no luck. It seems that I'm missing something in relation to the set up of plugins in general; lord knows that I've been through the documentation - ugh... Is there documentation on the prerequisites? I'm not a python developer and simply want to perform the install.

Thank You!

updated settings.json

{
    "files.autoSave": "afterDelay",
    "terminal.integrated.defaultProfile.windows": "Command Prompt",
    "extensions.ignoreRecommendations": true,
    "editor.accessibilitySupport": "off",
    "git.enableSmartCommit": true,
    "security.workspace.trust.untrustedFiles": "open",
    "javascript.updateImportsOnFileMove.enabled": "always",
    "workbench.startupEditor": "none",
    "aws.suppressPrompts": {
        "codeWhispererNewWelcomeMessage": true,
        "codeWhispererConnectionExpired": true
    },
    "editor.stickyScroll.enabled": false,
    "msg.editor.defaultDbConnection": "localhost",
    "terminal.integrated.enableMultiLinePasteWarning": false,

    "python.analysis.extraPaths": [
        "/usr/local/mysql-shell/lib/mysqlsh/python-packages/",
        "${workspaceFolder}\\plugins\\rds_plugin",
        "/usr/local/mysql-shell/lib/mysqlsh/lib/python3.9/site-packages"
    ],
    "python.autoComplete.extraPaths": [
        "/usr/local/mysql-shell/lib/mysqlsh/python-packages/",
        "/usr/local/mysql-shell/lib/mysqlsh/lib/python3.9/site-packages",
        "${workspaceFolder}\\plugins\\rds_plugin"
    ]

}