Open fonnesbeck opened 8 years ago
Do you have by any chance a py
file in another config directory? Use jupyter --path
to see all the path where config is searched.
Config appears to look in these directories:
config:
/Users/fonnescj/.jupyter
/Users/fonnescj/anaconda3/envs/workshop/etc/jupyter
/usr/local/etc/jupyter
/etc/jupyter
However, the second directory only has a json config file, and the last two directories do not exist on my machine.
I wonder if the collisions detector gets confused when there are config files in multiple directories on the search path.
I wonder if the collisions detector gets confused when there are config files in multiple directories on the search path.
It might be... I"ve open an issue to try to track that and have absolute path.
Hi, I met this problem just now, my solution is to change password in the .jason file "jupyter_notebook_config.json"
My solution was to delete both of these files. Jupyter opens without an issue.
I had same problem as I recently updated the version of python from 3.6 to 3.8, and solved it easily by changing a line in jupyter_notebook_comfig.py:
c.NotebookApp.notebook_dir = 'C:\Users\Sidik\AppData\Local\Programs\Python\Python36\jupyter' to c.NotebookApp.notebook_dir = 'C:\Users\Sidik\AppData\Local\Programs\Python\Python38\share\jupyter'
...
I am getting the following collision warning when starting up
jupyter notebook
:yet, the only contents of
~/.jupyter/jupyter_notebook_config.py
is:Commenting these commands out does not eliminate the warning.
Running Jupyter 4.1.0 on Python 3.5.2 (Anaconda) on OS X 10.11.6