Intellij Idea 如何用intellij调试远程python?

8dtrkrch  于 2023-01-16  发布在  Python
关注(0)|答案(1)|浏览(375)

有没有办法用intellij远程调试python3?我看不出有什么办法......用vscode我只有这个文件launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Remote Attach",
            "type": "python",
            "request": "attach",
            "connect": {
                "host": "172.18.0.5",
                "port": 5678
            },
            "pathMappings": [
                {
                    "localRoot": "${workspaceFolder}",
                    "remoteRoot": "."
                }
            ],
            "justMyCode": true
        }
    ]
}

而且一切都像(py)魅力一样工作!
我怎么能用intelij做呢?
我看了所有的jetbrains教程,没有什么看起来像什么需要一个

q9rjltbz

q9rjltbz1#

IntelliJ IDEA和PyCharm都支持使用Python进行远程调试,只需按照下面的指南操作即可:
https://www.jetbrains.com/help/pycharm/remote-debugging-with-product.html
如果你使用IntelliJ IDEA,你可以先安装Python插件,通过设置〉插件〉市场,输入Python,然后点击安装按钮。

相关问题