Python Jupyter Notebook (simple installing)

ade sueb
1 min readJul 31, 2020

--

If you want to make an experiment or just trying some python script from internet, better you use Virtual Environment or use Jupyter Notebook

Installing

Make sure you already install python and pip. If you have done that ,what you need is just install the jupyter

pip3 install jupyterlab

Running

And run it

jupyter notebook

And automatically browser will show up with this :

Click new at the top corner and choose python version you want to use, and here we go, try some script:

--

--