Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 809
Danrex Avatar asked Feb 17 '15 19:02

Danrex


1 Answers

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
like image 124
dpitkevics Avatar answered Oct 23 '22 21:10

dpitkevics