Running command line commands within PyCharm

command-line, pycharm, python

Solution

Press Alt+F12 to open terminal within PyCharm, then write in the command you wish to run and press enter.

In your case:

- Press Alt+F12

- Type `python Test.py GET /feeds`

- Press Enter

Problem

Hi I am using Python and have never really used it before. I have some commands sent to me that I need to run in the terminal. Basically: ``` python Test.py GET /feeds ``` I am using PyCharm and I was wondering if there was a way to run these same commands from within that IDE?

Original source