I was working on jupyter an hour back but now suddenly it has started showing no files when I first run jupyter.
I have made sure that its in my main directory where all my jupyter files are.
Kindly help me
If your jupyter notebook version is over 6.
Downgrade the version (5.7.5)
your jupyter notebook has authority of get list of files
if not, then open run jupyter notebook as administrator
It may causes a lots of different jupyter notebook error.
I'm sorry for not to give you a accurate answer
Related
I just created a new environment in anaconda and installed some libraries, when I opened jupyter notebook, I got below error. After clicking on OK, I can still open jupyter notebook. But it cannot run.
Anyone can help? Thank you so much!
Deleted the pythoncomXX.dll in the exact folder path that is shown in the error message (C:\<....>\miniconda3\envs\liveproject\Library\bin\pythoncom38.dll.)
Hey guys I am trying to use jupyter notebook in vs code but when I am installing jupyter Extention this message pop up "Extension host terminated unexpectedly."
The most probable cause is there is another extension that is causing this.
If you have live-server installed try removing it and then reinstalling Jupyter Notebook again.
As a last resort, try remove all other extensions and then install Jupyter Notebook extension.
Read more about it from here-
Stackoverflow
I just bought my very first Mac after using Windows my entire life and have been trying to install things. I am also still kind of a beginner at programming.
I installed Anaconda for Python 2.7 version, and then I installed the 3.7 version right after.
I tried going to terminal and typing jupyter notebook but it says:
zsh: command not found: jupyter
I am able to launch a jupyter notebook (I think) when I search for jupyter notebook in spotlight and executing the top hit.
I've been reading a lot on forums about this issue and see a lot of people talking about PATH which I am not really sure about.
I've seen people also post their which python information and theirs seem very different from mine:
which python3
usr/bin/python3
which python
usr/bin/python
Any help would be appreciated! Still learning how to set up this Mac. Thank you.
You might want to refer to this link https://jupyter-notebook-beginner-guide.readthedocs.io/en/latest/execute.html
3.1.2. Change Jupyter Notebook startup folder (Mac OS)
To launch Jupyter Notebook App:
Click on spotlight, type terminal to open a terminal window.
Enter the startup folder by typing cd /some_folder_name.
Type jupyter notebook to launch the Jupyter Notebook App The notebook interface will appear in a new browser window or tab.
From what I can understand you are not changing to the startup directory of Jupyter.
You need to add jupyter to your path.
In your terminal, type in the following command:
export PATH="/PUT JUPYTER PATH HERE:$PATH"
Then try jupyter notebook
Reasoning: If installing using pip install --user, you must add the user-level bin directory to your PATH environment variable in order to launch jupyter lab
I'm working with jupyter notebook through SSH (anaconda and python are on my linux machine but output in jupyter notebook I see on windows machine).
I tried to install keras and tensorflow but something went wrong and I removed these packages. After that I can't open any of my notebooks (but the file system output is okay, I can see all the folders and files in jupyter notebook).
Can you please help me to solve it? I think maybe it happened when tensorflow was removed, some packages also were deleted?
I'm trying to run a downloaded jupyter notebook from https://github.com/justmarkham/scikit-learn-videos with pycharm 16.1 on win7. I've come across https://www.jetbrains.com/help/pycharm/2016.1/tutorial-using-ipython-jupyter-notebook-with-pycharm.html , but this appears to deal with creating a notebook from scratch. Following the directions, I have created a virtualenv 'ml' with scikit learn and the needed depedencies including the jupyter notebook. As you can see, the main project run button is greyed out. Do I need to create a configuration file for this, i.e.
How can I get this working?