Reputation: 1655
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
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:
python Test.py GET /feeds
Upvotes: 24