我已经使用 PyCharm 有一段时间了,所以我不是专家。
我通常如何使用终端运行程序,如下所示:
program.py -t input1 -t1 input2
我想知道如何调试这个?
对于我编写的其他程序,我没有任何参数,因此调试只需设置断点并按调试即可。
菜单:
Run
-> Edit configurations
-> "+" (add new config)
-> Python
。
脚本名称:
program.py
如果您需要从已安装的软件包中调试脚本,例如
tox
,您也可以指定完整路径。例如:
脚本名称:/home/your_user/.envs/env_name/bin/tox
上面
/home/your_user/.envs/env_name
是包含tox
包的虚拟环境的路径。
脚本参数:
-t input1 -t1 input2
它几乎是正确的,但只需要对完整的脚本路径进行一些修正。
菜单:
Run->Edit configurations->"+" (add new config)->Python
。
脚本名称:
path + /program.py
脚本参数:
-t input1 -t1 input2