Welcome 

My name is John and I am excited to share with you my passion for software development, music and life.

John Kent
WVSS%20logo@0.5x

Search posts

python-sm

Installing Jupyter notebook on Ubuntu

When learning or working with machine learning tasks it is helpful to use python and more specifically Jupyter notebook.

Toward that end, I installed jupyter notebook on an Ubuntu 18.04 machine.

It was surprising simple. I followed the well written instructions from Joao Gross on Medium.

https://medium.com/@joaolggross/how-to-install-and-execute-jupyter-notebook-on-ubuntu-18-04-d5b37159bd8e

Run:

$ jupyter-notebook

I ran into the problem of tensorflow and matplotlib not being found. So I installed those components and it's "off to the races."

  • pip3 install tensorflow
  • pip3 install matplotlib

Remember to use shift enter to run a complete cell.

1 / 1