Issue
I have an issue where my File and Kernel menus initially show while the notebook is loading, then disappear once the notebook is loaded.
It used to work correctly. I am not sure what could have changed to make these menus disappear.
Thanks for any help with this.
Solution
This issue is related to your Virtual enviroment of python. So what you can do for solving this issue, just create a new virtual enviroment from Python command prompt and change your virtual environment to the new one, which you created, or change your virtual environment to one of your existing virtual environments.
See list of virtual environment: conda info --envs (in the python command prompt)
Activate a virtual environment: conda activate * (* = name of one of existing virtual environments)
create a new virtual enviroment: conda create * (* = name of the virtual environment you want to create)
or if you do not want to change your virtual environment you can open your jupyter directly from anaconda)
another solution is that you can shift to jupyter lab which is more efficient with respect to the jupyter notebook.
in the python command prompt instead of writing "jupyter notebook", write "jupyter lab".
Answered By - Amir Sarrafzadeh Arasi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.