Skip to content Skip to sidebar Skip to footer

Sys.executable Results Are Different In Terminal And Jupyter Notebook

Because I face a problem: When from imageio import imread in my jupyter notebook, I get the error: ModuleNotFoundError: No module named 'imageio' Whereas I can successfully import

Solution 1:

I had faced this issue some time back

The way I solved this was

  1. Deleting IPython and Jupyter from the system

  2. rm -rf ~/.local/share/ipython

  3. Reinstall IPython and Jupyter

Post a Comment for "Sys.executable Results Are Different In Terminal And Jupyter Notebook"