How many Python applications can I run at the same time per interpreter?

Is it just one?

Or could the Python interpreter run more than one at the same time?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can run only one Python application per interpreter, and you can only run one interpreter per process. If you want to run multiple applications then you will need to run multiple processes.

link|improve this answer
feedback

You can run multiple instances.

Maximum number of instances is only limited by system resources.

link|improve this answer
multiple instances of Python interpreter?? So, only one python app per instance of Python interpreter?? Or multiple python apps per one instance of python interpreter?? – DrStrangeLove Jan 14 at 19:02
There will be one instance (process) per application. You can invoke as many instances you want. – daya Jan 14 at 19:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.