https://github.com/jupyter/jupyter
Jupyter metapackage for installation, docs and chat
https://github.com/jupyter/jupyter
Last synced: 6 months ago
JSON representation
Jupyter metapackage for installation, docs and chat
- Host: GitHub
- URL: https://github.com/jupyter/jupyter
- Owner: jupyter
- License: bsd-3-clause
- Created: 2015-06-04T21:05:00.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-04T20:25:22.000Z (8 months ago)
- Last Synced: 2025-05-05T20:28:24.540Z (7 months ago)
- Language: Python
- Homepage: https://jupyter.readthedocs.io/
- Size: 7.57 MB
- Stars: 15,106
- Watchers: 617
- Forks: 4,232
- Open Issues: 46
-
Metadata Files:
- Readme: README.es-ES.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred - jupyter - Jupyter metapackage for installation, docs and chat (Python)
- awesome-starred - jupyter/jupyter - Jupyter metapackage for installation, docs and chat (others)
- awesome-ccamel - jupyter/jupyter - Jupyter metapackage for installation and documentation (Python)
- awesome-markdown - Jupyter - 一个旨在为交互式计算开发开源软件和服务的非营利项目。其核心产品是 **Jupyter Notebook**,一个基于网页的应用。它通过**Markdown**格式的文本单元格,支持用户创建和分享包含**实时代码、数学公式(LaTeX)、可视化图表和解释性文本**的文档。这为数据科学、机器学习和科学计算提供了强大的交互式开发环境。 (办公与协作工具 / 文档协同)
README
# Jupyter
*Leer en otros idiomas: [English](README.md), [Español](README.es-ES.md), [Português](README.pt-BR.md), [Français](README.fr-FR.md)*
Meta paquete de Jupyter para su instalación y documentación.
## Ejecutando los documentos localmente
Primero navega al directorio `/docs` y crea un entorno en `conda`:
```bash
conda env create -f environment.yml
```
Activa el entorno:
```bash
source activate jupyter_docs
```
Genera los documentos:
```bash
make clean
make html
```
Los documentos se crearán en `build/html`. Éstos pueden ser vistos abriendo `build/html/index.html` o iniciando un servidor HTTP y navegando hasta `0.0.0.0:8000` en tu explorador web.
```bash
python3 -m http.server
```