diff --git a/README.md b/README.md index 942389d..59d52f6 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ pip install dj_notebook First, find your project's `manage.py` file and open it. Copy whatever is being set to `DJANGO_SETTINGS_MODULE` into your clipboard. -Create an ipython notebook in the same directory as `manage.py`. In VSCode, +Create an ipython notebook in the same directory as `manage.py`, or another directory of your choosing. In VSCode, simply add a new `.ipynb` file. If using Jupyter Lab, use the `File -> New -> Notebook` menu option. @@ -50,6 +50,9 @@ from dj_notebook import activate plus = activate() +# If you have created your notebook in a different directory, instead do: +# plus = activate(search_dir="/path/to/your/project") + # If that throws an error, try one of the following: # DJANGO_SETTINGS_MODULE_VALUE aka "book_store.settings"