How to change the Root/Default directory for files to save (Jupyter ver 7.0.6)

No such directory: ‘‘D:\My Folder\Aandele\AJupyter\x01 BuySell’’

It means that it treats \1 as special character - you need to add escapes, so instead of:

c.ServerApp.root_dir = 'D:\My Folder\Aandele\AJupyter\1 BuySell'

it would be:

c.ServerApp.root_dir = 'D:\\My Folder\\Aandele\\AJupyter\\1 BuySell'
1 Like