How to use Jupyter Notebook with Python 3.9
Hi, just a short guide how Jupyter Notebook can be installed in 4 steps: 1. Open your terminal. 2. Run "pythom -m pip --updrage-pip" to make sure that the latest pip version is installed. 3. Next, we need to install Jupyter Notebook, it can be done with following command "pip install jupyter" 4. Now, we can launch the Notebook by execution "jupyter notebook" in the terminal. It should start local Jupyter Notebook server and open its home page in your browser. Have fun!
Comments