How to install Jupyter Notebook in Windows?

Viewed 69

When I try to run Python3 from PowerShell, I got the following output:

C:/> python3 --version
Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases.

Then, how should I install Python?

1 Answers

1. Instalar Python (si no lo tienes)

Jupyter Notebook requiere Python3 instalado en tu equipo. Para verificar que está instalado, ve a la terminal (Power Shell) y escribe python --version:

C:\Users\gmarx> python --version

Python 3.13.2

Si el comando no te regresa nada como respuesta, entonces no tienes instalado Python.

Entonces, si no lo tienes instalado:

• Descarga e instala Python desde la página oficial:

👉 https://www.python.org/downloads/

• Durante la instalación, asegúrate de marcar la opción “Add Python to PATH”.

2. Instalar Jupyter Notebook con pip

  1. Abre una terminal PowerShell o Símbolo del sistema (cmd).

  2. Ejecuta el siguiente comando para verificar que tengas habilitado pip e instalar Jupyter Notebook:

pip --version

pip 24.3.1 from C:\Users\gmarx\AppData\Local\Programs\Python\Python313\Lib\site-packages\pip (python 3.13)
  1. Para instalar Jupyter:
pip install notebook
  1. Espera a que finalice la instalación.

3. Ejecutar Jupyter Notebook

Después de la instalación, puedes abrir Jupyter Notebook con:

jupyter notebook
Related Questions