
Installing Jupyter Notebook is easy - all you need to have is pip package installer and make sure you have python installed.
Step 1: Install Jupyter Notebook using pip3
pip3 install notebook
Defaulting to user installation because normal site-packages is not writeable
Collecting notebook
Downloading notebook-6.4.8-py3-none-any.whl (9.9 MB)
|████████████████████████████████| 9.9 MB 1.6 MB/s
5.0,>=2.4->nbformat->notebook) (3.7.0)
Installing collected packages: notebook
Successfully installed notebook-6.4.8
Step 2: Run Jupyter Notebook
To run Notebook just use the command - python3 -m notebook
You can uninstall notebook by command: pip3 uninstall notebook
pip3 uninstall notebook
Found existing installation: notebook 6.4.8
Uninstalling notebook-6.4.8:
Would remove:
/Users/code2care/Library/Python/3.8/bin/jupyter-bundlerextension
/Users/code2care/Library/Python/3.8/bin/jupyter-nbextension
/Users/code2care/Library/Python/3.8/bin/jupyter-notebook
/Users/code2care/Library/Python/3.8/bin/jupyter-serverextension
/Users/code2care/Library/Python/3.8/lib/python/site-packages/notebook-6.4.8.dist-info/*
/Users/code2care/Library/Python/3.8/lib/python/site-packages/notebook/*
/Users/code2care/Library/Python/3.8/share/applications/jupyter-notebook.desktop
/Users/code2care/Library/Python/3.8/share/icons/hicolor/scalable/apps/notebook.svg
Proceed (y/n)? y
Successfully uninstalled notebook-6.4.8
Do let me know if you face any issues. Happy to help!
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- How to convert int to ASCII in Python
- How to make use of SQLite Module in Python?
- Split a String into Sub-string and Parse in Python
- Python: Pandas Rename Columns with List Example
- How to run Python file from Mac Terminal
- How to Exit a Loop in Python Code
- Python: How to Plot a Histogram using Matplotlib and data as list
- MD5 Hashing in Python
- Jupyter: Safari Cant Connect to the Server localhost:8888/tree
- Fix: AttributeError: str object has no attribute decode. Did you mean: encode?[Python]
- How to Read a binary File with Python
- How to add two float numbers in Python
- Python: How to install YAML Package
- Python: How to Save Image from URL
- What is Markdown in Jupyter Notebook with Examples
- How to change the Python Default version
- 33: Python Program to send an email vid GMail
- How to comment code in Python
- How to Fix AttributeError in Python
- Fix: error: Jupyter command `jupyter-nbconvert` not found [VSCode]
- How to comment out a block of code in Python
- List of All 35 Reserved Keywords in Python Programming Language 3.11
- Import Other Python Files Examples
- Python: How to add Progress Bar in Console with Examples
- 3 Ways to convert bytes to String in Python
More Posts:
- How to integrate Salesforce CRM Sales and Service with Microsoft Teams - Teams
- Check if a Java Date String is Valid or Not (Java 8) - Java
- Python Program: Use NumPy to generate a random number between 0 and 1 - Python-Programs
- [Fix] Java Exception with Lambda - Cannot invoke because object is null - Java
- Android appcompat_v7 Error retrieving parent for item: No resource found that matches the given name - Android
- How to Escape a character in a Bash command String - Bash
- Ways to Initialize HashMap Collection in Java - Java
- Is Java 20 an LTS Version? - Java