Debugging with PyCharm terminal arguments
Solution 1:
Menu: Run
-> Edit configurations
-> "+" (add new config)
-> Python
.
Script name: program.py
If you need to debug a script from installed packages, such as tox
, you can specify the full path too. For example:
Script name: /home/your_user/.envs/env_name/bin/tox
Above /home/your_user/.envs/env_name
is a path to virtual environment containing tox
package.
Script params: -t input1 -t1 input2
Solution 2:
Just the image wise representation of answer
step 1: Click on the Run
menu click Edit configuration
- Select
+
in top right corner and selectpython
- Provide the
name
,absolutepath of the script/ select the script by clicking three dots(green marker
,script paramters
andpython interpreter
Solution 3:
It was almost correct but just needed little correction with full script path.
Menu: Run->Edit configurations->"+" (add new config)->Python
.
Script name: path + /program.py
Script params: -t input1 -t1 input2