[Django]-A different virtualenv for each Django app

7👍

The entire project is loaded into the same Python process. You can’t have two Python environments active at the same time in the same process. So the answer is no – you can’t have concurrent virtual environments for apps in the same project.

👤zmbq

Leave a comment