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
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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…