How do I block comment in Jupyter notebook? [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 3 years ago. Improve this question I want to comment out a block of multiple lines in Jupyter Notebook, but can’t find out … Read more

How do I add python3 kernel to jupyter (IPython)

My Jupyter notebooks installed with python 2 kernel. I do not understand why. I might have messed something up when I did the install. I already have python 3 installed. How can I add it to Jupyter? Here’s a screenshot of what the default Jupyter insalled with python3 -m install jupyter and opened in the … Read more

How to embed image or picture in jupyter notebook, either from a local machine or from a web resource?

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 in a markdown cell and the following code gives a 404 error : !How to embed image or picture in jupyter notebook, either from … Read more

How do I increase the cell width of the Jupyter/ipython notebook in my browser?

I would like to increase the width of the ipython notebook in my browser. I have a high-resolution screen, and I would like to expand the cell width/size to make use of this extra space. Thanks! EDIT / ANSWER : 5/2017 I now use jupyterthemes: https://github.com/dunovank/jupyter-themes and this command: jt -t oceans16 -f roboto -fs … Read more

Removing Conda environment

I want to remove a certain environment created with conda. How can I achieve that? Let’s say I have an active testenv environment. I tried, by following documentation, with: $ conda env remove CondaEnvironmentError: cannot remove current environment. deactivate and run conda remove again I then deactivate it: $ source deactivate I try running again … Read more

Conda environments not showing up in Jupyter Notebook

I installed Anaconda (with Python 2.7), and installed Tensorflow in an environment called tensorflow. I can import Tensorflow successfully in that environment. The problem is that Jupyter Notebook does not recognize the new environment I just created. No matter I start Jupyter Notebook from the GUI Navigator or from the command line within the tensorflow … Read more