Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
644 views
in Technique[技术] by (71.8m points)

debugging - ModuleNotFoundError: No module named 'odoo' when debug file python in vscode

Hy, i want to debug my python file in custom module in order to know the value of a varibale,I have config vscode launch.json like this

{
// 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": [ 

    
    {
        // "name": "Python: Current File",
        // "type": "python",
        // "request": "launch",
        // "program": "${file}",
        // "console": "integratedTerminal"
        "name": "Python: Odoo",
        "type": "python",
        "request": "launch",
        "stopOnEntry": false,
        "python": "/opt/odoo12/odoo-venv/bin/python3",
        //"program": "${file}", use this to debug opened file.
        //"program": "${workspaceRoot}/Path/To/odoo.py",
        "program": "/opt/odoo12/odoo/odoo-bin",
        "args": [
          "--config=/etc/odoo12.conf"
        ],
        "cwd": "${workspaceRoot}",
        "console": "externalTerminal",
    }
]

}

but when i start debuging in python file, error like this enter image description here

in this case, not just custom module error, but when i try to debug in odoo default module in odoo path is also error like above, in the program and application is not problem,application running smothly, but i want to debug for knows value from a variable , to facilitate development process, whats wrong ? thanks

question from:https://stackoverflow.com/questions/66056886/modulenotfounderror-no-module-named-odoo-when-debug-file-python-in-vscode

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...