Skip to main content

Posts

Showing posts with the label Jupyter

How to install and open jupyter notebook from cmd

Jupyter Notebook is an open-source web-based interactive development environment (IDE) that allows you to create and share documents that contain live code, equations, visualizations, and narrative text. It is commonly used for data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more. Jupyter Notebook supports over 40 programming languages, including Python, R, Julia, and Scala. The Jupyter Notebook application allows you to create and edit documents that are composed of "cells." There are two main types of cells: code cells and markdown cells. Code cells allow you to write and execute code, while markdown cells allow you to write narrative text. The Jupyter Notebook interface provides tools for manipulating and navigating the cells, including "running" a cell (to execute its code) and "adding" a new cell. One of the main advantages of Jupyter Notebook is that it allows for a more int...