My code was running fine before I did not change anything and I ran it again. Now it doesn't return anything not even an error. It is just stuck on "In [*]".
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
This means that Jupyter is still running the kernel. It is possible that you are running an infinite loop within the kernel and that is why it can't complete the execution.
Try manually stopping the kernel by pressing the stop button at the top. If that doesn't work, interrupt it and restart it by going to the "Kernel" menu. This should disconnect it.
Otherwise, I would recommend closing and reopening the notebook. The problem may also be with your code.
I had the same issue. I found that ipython must be running for jupyter notebook to execute. Do the following:
ipython
. This will start ipython.This should work. It worked for me. Cheers!
I have the same issue and I did this: I went to windows option (the icon), then I chose the option Anaconda Prompt then a small windows show up with the prompt like this: c:\user\computer name> then I type this: c:\user\computer name>jupyter notebook
then enter and that's it. I hope that helps