
python - collapse cell in jupyter notebook - Stack Overflow
UPDATE: The newer jupyter-lab is a more modern and feature-rich interface which supports cell folding by default. See @intsco's answer below UPDATE 2 Since jupyter-lab now also …
How to list all installed packages and their versions in Python?
Is there a way in Python to list all installed packages and their versions? I know I can go inside python/Lib/site-packages and see what files and directories exist, but I find this very awkward. ...
python - How to open local file on Jupyter? - Stack Overflow
It's a pity there is no possibility to right-click any folder in jupyter's "explorer view" and get a menu option to open the folder in the true os file explorer. This leads to convoluted tricks for files and …
python - How can I fix "'jupyter' is not recognized as an internal or ...
I have installed Jupyter on Windows 10, Python 3.x via pip install jupyter The installation works fine, even though I did restart the terminal. But trying to run jupyter notebook gives the follow...
python - Make 3D plot interactive in Jupyter Notebook - Stack …
I use Jupyter Notebook to make analysis of datasets. There are a lot of plots in the notebook, and some of them are 3d plots. I'm wondering if it is possible to make the 3d plot interactive, so I ...
python - How to embed image or picture in jupyter notebook, …
I would like to include image in a jupyter notebook. If I did the following, it works : from IPython.display import Image Image("img/picture.png") But I would like to include the images …
How to give jupyter cell standard input in python?
I am trying to run a program on a jupyter notebook that accepts user input, and I cannot figure out how to get it to read standard input. For example, if I run the code with shift-enter: a = input()
python - How do I output lists as a table in Jupyter notebook?
How do I output lists as a table in Jupyter notebook? Asked 9 years, 10 months ago Modified 1 year, 11 months ago Viewed 232k times
python - Jupyter | The kernel appears to have died. It will restart ...
Problema: Jupyter the kernel appears to have died it will restart automatically I had the same problem, reinstalled numpy and keras, but to no avail, it seems to be a problem only with the …
python - How do I get the current IPython / Jupyter Notebook …
I am trying to obtain the current NoteBook name when running the IPython notebook. I know I can see it at the top of the notebook. What I am after something like currentNotebook = …