有没有办法用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教程,没有什么看起来像什么需要一个
1条答案
按热度按时间q9rjltbz1#
IntelliJ IDEA和PyCharm都支持使用Python进行远程调试,只需按照下面的指南操作即可:
https://www.jetbrains.com/help/pycharm/remote-debugging-with-product.html
如果你使用IntelliJ IDEA,你可以先安装Python插件,通过设置〉插件〉市场,输入
Python
,然后点击安装按钮。