First you need to create a configuration file using cmd : jupyter notebook --generate-config Then find the folder C: \ Users \ your_username \ .jupyter ( Search for this folder ) and right-click on the jupyter_notebook_config.py edit.
Then press Ctrl + F: # c.NotebookApp.notebook_dir = '' . Note that quotation marks are single. Select the directory that you want to use as your home for your jupyter, and copy it with Ctrl + C , for example: C: \ Users \ username \ Python Projects.
Then paste it into this line as follows: c.NotebookApp.notebook_dir = 'C: \\ Users \\ username \\ Python Projects'
Be sure to delete # , as in the comment.
Make sure to double the slash \\ on each name of your path. Ctrl + S to save config.py !!!
Go back to your cmd and run jupyter notebook. This should be in your directory of choice. Check this by creating a folder and watching your directory from your computer.
source share