andbeonetraveler
andbeonetraveler

Reputation: 725

Open multiple IDLE shells in python 3.6 Mac OSX 10.12

I want to run two or more different python scripts simultaneously in IDLE. I want to use IDLE directly, not terminal. I want to use all of them with Python 3.6. I'm on Mac 10.12. Can I do this?

This opens a Python 2.7 IDLE window. I don't understand this.

If I CAN'T do this, can I run multiple python scripts from the terminal simultaneously?

Upvotes: 1

Views: 3716

Answers (1)

Natsfan
Natsfan

Reputation: 4802

Yes, you can. From a terminal window type idle3 &. This will bring up the idle3 window and leaving the terminal window still functional. Now type idle3 & again and you'll get another idle3 window. You can do this more times if needed.

An alternative method is to open an iTerm or Terminal window and under the shell menu, you can open a new tab. Do this however many times you wish. Now in each tab type idle3. You can open as many idle3 windows as you wish.

Upvotes: 2

Related Questions