What is the way to set ipython notebook server parameters when running notebook with django-extensions?
问题 I am using the following command to run an ipython notebook server with django: ./manage.py shell_plus --notebook The server functions as expected. However, I would like to set the port and not launch a browser when starting the server. If I were running an IPython notebook server without django I successfully use the following: ipython notebook --port=9999 --no-browser I checked the documentation here and tried setting the options using IPYTHON_ARGUMENTS = [ '--ext', 'django_extensions