问题
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?
回答1:
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
来源:https://stackoverflow.com/questions/28570058/running-command-line-commands-within-pycharm