Danrex
Danrex

Reputation: 1655

Running command line commands within PyCharm

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?

Upvotes: 8

Views: 52546

Answers (1)

dpitkevics
dpitkevics

Reputation: 1258

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

In your case:

  1. Press Alt+F12
  2. Type python Test.py GET /feeds
  3. Press Enter

Upvotes: 24

Related Questions