如何在PyCharm中用shell脚本调试python程序?
我有一个shell脚本,它启动了一个PyCharm程序,如下所示test.sh:
python scripts/recognition.py @scripts/options/with_bert.opt
然后在命令行中运行:
sh test.sh
我甚至在www.example.com的第一个“import”行中设置了调试器断点recognition.py,当它在PyCharm中运行时,它仍然没有停止。
当python在shell脚本中启动时,有没有办法在PyCharm中调试python?
1条答案
按热度按时间u0njafvf1#
调试方法是将shell脚本中传入Python文件的参数和环境变量**解析出来,添加到pycharm中Python文件的run/debug配置中,或者直接修改添加到python文件中。
enter image description here
有关更多详细信息,可以参考enter link description here