[Answer]-IPython Kernel Non-Responsive: Running a Django development server from an IPython Notebook

1👍

I opened up an issue on IPython dev’s github. Minrk found this solution:

import subprocess
server = subprocess.Popen(["python", "manage.py", "runserver"])

it allows me to view the dev server and continue to develop it in the IPython Notebook. sweet!

Leave a comment