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?
idle3
opens the version 3 IDLE for me and I seem to be running several of them without any issue. But not running IDLE seems like a much more fruitful and normal thing to do. – Chenopodpython3 ./script1.py
. In another terminal, runpython3 ./script2.py
. Or if the first one doesn't require any user interaction, you can run it in the background withpython3 ./script1.py &
and run the second one in the same terminal – Chenopod